@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
274 lines • 9.32 kB
JSON
{
"fields": [
{
"id": "slot_drop_chance",
"title": "Slot Drop Chance",
"description": "A list of slots with the chance to drop an equipped item from that slot.",
"dataType": 17,
"samples": {
"/vanilla/behavior_pack/entities/drowned.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:ranged_equipment/minecraft:equipment/",
"content": [
{
"slot": "slot.weapon.offhand",
"drop_chance": 1
}
]
},
{
"path": "/minecraft:entity/component_groups/minecraft:melee_equipment/minecraft:equipment/",
"content": [
{
"slot": "slot.weapon.offhand",
"drop_chance": 1
}
]
}
],
"/vanilla/behavior_pack/entities/fox.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:fox_with_item/minecraft:equipment/",
"content": [
{
"slot": "slot.weapon.mainhand",
"drop_chance": 1
}
]
}
],
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": [
{
"slot": "slot.weapon.mainhand",
"drop_chance": 0
}
]
}
]
}
},
{
"id": "table",
"title": "Table",
"description": "The file path to the equipment table, relative to the behavior pack's root.",
"dataType": 2,
"samples": {
"/vanilla/behavior_pack/entities/bogged.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": "loot_tables/entities/skeleton_gear.json"
}
],
"/vanilla/behavior_pack/entities/drowned.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:ranged_equipment/minecraft:equipment/",
"content": "loot_tables/entities/drowned_ranged_equipment.json"
},
{
"path": "/minecraft:entity/component_groups/minecraft:melee_equipment/minecraft:equipment/",
"content": "loot_tables/entities/drowned_equipment.json"
}
],
"/vanilla/behavior_pack/entities/fox.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:fox_with_item/minecraft:equipment/",
"content": "loot_tables/entities/fox_equipment.json"
}
],
"/vanilla/behavior_pack/entities/husk.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": "loot_tables/entities/zombie_equipment.json"
}
],
"/vanilla/behavior_pack/entities/piglin_brute.json": [
{
"path": "/minecraft:entity/component_groups/melee_unit/minecraft:equipment/",
"content": "loot_tables/entities/piglin_brute_gear.json"
}
],
"/vanilla/behavior_pack/entities/piglin.json": [
{
"path": "/minecraft:entity/component_groups/ranged_unit/minecraft:equipment/",
"content": "loot_tables/entities/piglin_gear_ranged.json"
},
{
"path": "/minecraft:entity/component_groups/melee_unit/minecraft:equipment/",
"content": "loot_tables/entities/piglin_gear_melee.json"
}
],
"/vanilla/behavior_pack/entities/skeleton.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": "loot_tables/entities/skeleton_gear.json"
}
],
"/vanilla/behavior_pack/entities/vex.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": "loot_tables/entities/vex_gear.json"
}
],
"/vanilla/behavior_pack/entities/wither_skeleton.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": "loot_tables/entities/wither_skeleton_gear.json"
}
],
"/vanilla/behavior_pack/entities/zombie.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:can_have_equipment/minecraft:equipment/",
"content": "loot_tables/entities/zombie_equipment.json"
}
]
}
}
],
"description": "Sets the Equipment table to use for this Entity.",
"title": "Equipment",
"samples": {
"/vanilla/behavior_pack/entities/bogged.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/skeleton_gear.json"
}
}
],
"/vanilla/behavior_pack/entities/drowned.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:ranged_equipment/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/drowned_ranged_equipment.json",
"slot_drop_chance": [
{
"slot": "slot.weapon.offhand",
"drop_chance": 1
}
]
}
},
{
"path": "/minecraft:entity/component_groups/minecraft:melee_equipment/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/drowned_equipment.json",
"slot_drop_chance": [
{
"slot": "slot.weapon.offhand",
"drop_chance": 1
}
]
}
}
],
"/vanilla/behavior_pack/entities/fox.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:fox_with_item/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/fox_equipment.json",
"slot_drop_chance": [
{
"slot": "slot.weapon.mainhand",
"drop_chance": 1
}
]
}
}
],
"/vanilla/behavior_pack/entities/husk.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/zombie_equipment.json"
}
}
],
"/vanilla/behavior_pack/entities/piglin_brute.json": [
{
"path": "/minecraft:entity/component_groups/melee_unit/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/piglin_brute_gear.json"
}
}
],
"/vanilla/behavior_pack/entities/piglin.json": [
{
"path": "/minecraft:entity/component_groups/ranged_unit/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/piglin_gear_ranged.json"
}
},
{
"path": "/minecraft:entity/component_groups/melee_unit/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/piglin_gear_melee.json"
}
}
],
"/vanilla/behavior_pack/entities/skeleton.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/skeleton_gear.json"
}
}
],
"/vanilla/behavior_pack/entities/stray.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/skeleton_gear.json"
}
}
],
"/vanilla/behavior_pack/entities/vex.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/vex_gear.json"
}
}
],
"/vanilla/behavior_pack/entities/villager_v2.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"slot_drop_chance": [
{
"slot": "slot.weapon.mainhand",
"drop_chance": 0
}
]
}
}
],
"/vanilla/behavior_pack/entities/wither_skeleton.json": [
{
"path": "/minecraft:entity/components/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/wither_skeleton_gear.json"
}
}
],
"/vanilla/behavior_pack/entities/zombie.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:can_have_equipment/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/zombie_equipment.json"
}
}
],
"/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_zombie_leader.behavior.json": [
{
"path": "/minecraft:entity/component_groups/minecraft:can_have_equipment/minecraft:equipment/",
"content": {
"table": "loot_tables/entities/zombie_equipment.json"
}
}
]
},
"id": "minecraft:equipment"
}