@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
1,036 lines • 39.2 kB
JSON
{
"fields": [
{
"id": "on_bred",
"title": "On Bred",
"description": "A Molang expression defining the amount of experience rewarded when this entity is successfully bred. An array of expressions adds each expression's result together for a final total.",
"defaultValue": "0",
"dataType": 22,
"samples": {
"/vanilla/behavior_pack/entities/armadillo.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": "Math.Random(1,7)"
}
],
"/vanilla/behavior_pack/entities/axolotl.json": [
{
"path": "/minecraft:entity/component_groups/axolotl_adult/minecraft:experience_reward/",
"content": "Math.Random(1,7)"
}
]
}
},
{
"id": "on_death",
"title": "On Death",
"description": "A Molang expression defining the amount of experience rewarded when this entity dies. An array of expressions adds each expression's result together for a final total.",
"defaultValue": "0",
"dataType": 22,
"samples": {
"/vanilla/behavior_pack/entities/armadillo.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
],
"/vanilla/behavior_pack/entities/axolotl.json": [
{
"path": "/minecraft:entity/component_groups/axolotl_adult/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
],
"/vanilla/behavior_pack/entities/blaze.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 10 : 0"
}
],
"/vanilla/behavior_pack/entities/bogged.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
],
"/vanilla/behavior_pack/entities/breeze.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 10 : 0"
}
],
"/vanilla/behavior_pack/entities/cave_spider.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 5 : 0"
}
],
"/vanilla/behavior_pack/entities/creeper.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 5 : 0"
}
],
"/vanilla/behavior_pack/entities/drowned.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:baby_drowned/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
},
{
"path": "/minecraft:entity/component_groups/minecraft:adult_drowned/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
],
"/vanilla/behavior_pack/entities/endermite.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 3 : 0"
}
],
"/vanilla/behavior_pack/entities/evocation_illager.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "10"
}
],
"/vanilla/behavior_pack/entities/glow_squid.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"
}
],
"/vanilla/behavior_pack/entities/husk.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:zombie_husk_baby/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
],
"/vanilla/behavior_pack/entities/magma_cube.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? query.variant : 0"
}
],
"/vanilla/behavior_pack/entities/piglin_brute.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 20 : 0"
}
],
"/vanilla/behavior_pack/entities/piglin.json": [
{
"path": "/minecraft:entity/component_groups/piglin_baby/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 1 + (query.equipment_count * Math.Random(1,2)) : 0"
}
],
"/vanilla/behavior_pack/entities/pillager.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"
}
],
"/vanilla/behavior_pack/entities/player.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "Math.Min(query.player_level * 7, 100)"
}
],
"/vanilla/behavior_pack/entities/ravager.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 20 : 0"
}
],
"/vanilla/behavior_pack/entities/shulker.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? 5: 0"
}
],
"/vanilla/behavior_pack/entities/slime.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? query.variant : 0"
}
],
"/vanilla/behavior_pack/entities/squid.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"
}
],
"/vanilla/behavior_pack/entities/vindicator.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"
}
],
"/vanilla/behavior_pack/entities/wither.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": "50"
}
],
"/samples/add_entity_robot/full/robot_example_full_behavior/entities/robot.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": 8
}
]
}
}
],
"description": ".",
"title": "Experience Reward",
"samples": {
"/vanilla/behavior_pack/entities/armadillo.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/axolotl.json": [
{
"path": "/minecraft:entity/component_groups/axolotl_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/bee.json": [
{
"path": "/minecraft:entity/component_groups/bee_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/blaze.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 10 : 0"
}
}
],
"/vanilla/behavior_pack/entities/bogged.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/breeze.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? 10 : 0"
}
}
],
"/vanilla/behavior_pack/entities/camel.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:camel_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/cat.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:cat_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/cave_spider.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/chicken.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:chicken_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/cow.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:cow_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/creeper.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/dolphin.json": [
{
"path": "/minecraft:entity/component_groups/dolphin_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/donkey.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:donkey_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/drowned.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:baby_drowned/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/minecraft:adult_drowned/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/elder_guardian.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 10 : 0"
}
}
],
"/vanilla/behavior_pack/entities/enderman.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/endermite.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 3 : 0"
}
}
],
"/vanilla/behavior_pack/entities/evocation_illager.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "10"
}
}
],
"/vanilla/behavior_pack/entities/fish.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/fox.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:fox_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/frog.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/ghast.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/glow_squid.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/goat.json": [
{
"path": "/minecraft:entity/component_groups/goat_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/guardian.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 10 : 0"
}
}
],
"/vanilla/behavior_pack/entities/hoglin.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/horse.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:horse_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/husk.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:zombie_husk_baby/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/minecraft:zombie_husk_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/llama.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:llama_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/magma_cube.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? query.variant : 0"
}
}
],
"/vanilla/behavior_pack/entities/mooshroom.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:cow_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/mule.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:mule_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/ocelot.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:ocelot_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/panda.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:panda_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/parrot.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:parrot_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/phantom.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/pig.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:pig_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/piglin_brute.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 20 : 0"
}
}
],
"/vanilla/behavior_pack/entities/piglin.json": [
{
"path": "/minecraft:entity/component_groups/piglin_baby/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 1 + (query.equipment_count * Math.Random(1,2)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/piglin_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/pillager.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/player.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "Math.Min(query.player_level * 7, 100)"
}
}
],
"/vanilla/behavior_pack/entities/polar_bear.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/pufferfish.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/rabbit.json": [
{
"path": "/minecraft:entity/component_groups/adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/ravager.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 20 : 0"
}
}
],
"/vanilla/behavior_pack/entities/salmon.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/sheep.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:sheep_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/shulker.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5: 0"
}
}
],
"/vanilla/behavior_pack/entities/silverfish.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/skeleton_horse.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:skeleton_horse_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/skeleton.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/slime.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? query.variant : 0"
}
}
],
"/vanilla/behavior_pack/entities/sniffer.json": [
{
"path": "/minecraft:entity/component_groups/sniffer_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/spider.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/squid.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "!query.is_baby && query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/stray.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/strider.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:strider_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/trader_llama.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:llama_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/tropicalfish.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/turtle.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/vex.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/vindicator.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/warden.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/witch.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? (query.is_baby ? 12 : 5) + (Math.die_roll(query.equipment_count,1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/wither_skeleton.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/wither.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "50"
}
}
],
"/vanilla/behavior_pack/entities/wolf.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:wolf_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/zoglin.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/vanilla/behavior_pack/entities/zombie_horse.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:horse_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/vanilla/behavior_pack/entities/zombie_pigman.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:pig_zombie_baby/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/minecraft:pig_zombie_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/zombie_villager_v2.json": [
{
"path": "/minecraft:entity/component_groups/baby/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/zombie_villager.json": [
{
"path": "/minecraft:entity/component_groups/baby/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/vanilla/behavior_pack/entities/zombie.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:zombie_baby/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 12 + (query.equipment_count * Math.Random(1,3)) : 0"
}
},
{
"path": "/minecraft:entity/component_groups/minecraft:zombie_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/samples/add_entity_robot/full/robot_example_full_behavior/entities/robot.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": 8
}
}
],
"/samples/addon_starter/1_hello_world/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:sheep_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/biceson.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:llama_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/nardolphle.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:sheep_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/biceson.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:llama_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/nardolphle.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:sheep_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/behavior_pack_sample/entities/cow.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:cow_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/casual_creator/chill_dreams/1_dream_turkey/behavior_packs/mamm_cds/entities/dream_turkey.json": [
{
"path": "/minecraft:entity/component_groups/mamm_cds:turkey_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/casual_creator/chill_dreams/2_dreams_come_true/behavior_packs/mamm_cds/entities/dream_turkey.json": [
{
"path": "/minecraft:entity/component_groups/mamm_cds:turkey_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/casual_creator/chill_dreams/complete/behavior_packs/mamm_cds/entities/dream_turkey.json": [
{
"path": "/minecraft:entity/component_groups/mamm_cds:turkey_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/entities/eliza.json": [
{
"path": "/minecraft:entity/component_groups/mike_eliz:eliza_adult/minecraft:experience_reward/",
"content": {
"on_bred": "Math.Random(1,7)",
"on_death": "query.last_hit_by_player ? Math.Random(1,3) : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/axe_turret.behavior.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/bow_turret.behavior.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/crossbow_turret.behavior.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_wave_generator.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_zombie_leader.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:zombie_adult/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/shbullet_turret.behavior.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/smfireball_turret.behavior.json": [
{
"path": "/minecraft:entity/components/minecraft:experience_reward/",
"content": {
"on_death": "query.last_hit_by_player ? 5 : 0"
}
}
]
},
"id": "minecraft:experience_reward"
}