NBT(Named Binary Tag)是 Minecraft 中用于存储数据的一种结构化格式,广泛用于指令、存档、实体、物品等数据存储。
NBT 可以修改物品、实体、方块等的属性,例如附魔、名称、耐久度等。


1. NBT 基本结构

NBT 数据由 键值对(Key-Value Pairs) 组成,格式为 {键:值, 键:值, ...},支持多种数据类型:

数据类型示例说明
Byte1b字节(-128~127)
Short100s短整数(-32768~32767)
Int1000整数
Long1000L长整数
Float3.14f单精度浮点数
Double3.14d双精度浮点数
String"Hello"字符串(必须用引号)
Compound{key:value}复合标签(嵌套数据)
List[value1, value2]列表(同类型数据)
ByteArray[B;1b,2b]字节数组
IntArray[I;1,2,3]整数数组
LongArray[L;1L,2L]长整数数组

2. 常用 NBT 标签分类

(1) 物品(Item)NBT

标签用途示例
Count物品数量{Count:64b}
Damage耐久度{Damage:10}
tag物品额外数据{tag:{display:{Name:'"Super Sword"'}}}
Enchantments附魔{Enchantments:[{id:"sharpness",lvl:5}]}
display显示名称/Lore{display:{Name:'"Legendary Sword"',Lore:['"Very Sharp!"']}}
Unbreakable无法破坏{Unbreakable:1b}
CanDestroy可破坏的方块{CanDestroy:["minecraft:stone"]}
CanPlaceOn可放置的方块{CanPlaceOn:["minecraft:dirt"]}

示例(给予一把锋利V钻石剑)

/give @p minecraft:diamond_sword 1 0 {Enchantments:[{id:"minecraft:sharpness",lvl:5s}],Unbreakable:1b,display:{Name:'"God Sword"',Lore:['"This sword is OP!"]}}

(2) 实体(Entity)NBT

标签用途示例
CustomName自定义名称{CustomName:'"Boss Zombie"'}
CustomNameVisible名称是否可见{CustomNameVisible:1b}
Health生命值{Health:100f}
Attributes属性修改{Attributes:[{Name:"generic.max_health",Base:100}]}
NoAI禁用AI{NoAI:1b}
Silent静音{Silent:1b}
Invulnerable无敌{Invulnerable:1b}
PersistenceRequired不被清除{PersistenceRequired:1b}
Motion运动速度{Motion:[0.0,1.0,0.0]}
Rotation旋转角度{Rotation:[90f,0f]}

示例(生成一个无敌的僵尸Boss)

/summon minecraft:zombie ~ ~ ~ {CustomName:'"Boss Zombie"',CustomNameVisible:1b,Health:100f,Attributes:[{Name:"generic.max_health",Base:100}],Invulnerable:1b}

(3) 方块(Block)NBT

标签用途示例
Items容器内容{Items:[{id:"minecraft:diamond",Count:1,Slot:0}]}
Lock容器锁{Lock:"Secret"}
CustomName容器名称{CustomName:'"Treasure Chest"'}
RepairCost铁砧修复消耗{RepairCost:10}

示例(放置一个带物品的箱子)

/setblock ~ ~ ~ minecraft:chest{Items:[{id:"minecraft:diamond",Count:5,Slot:0}]}

(4) 玩家(Player)NBT

标签用途示例
Inventory玩家背包{Inventory:[{id:"minecraft:diamond_sword",Count:1,Slot:0}]}
EnderItems末影箱物品{EnderItems:[{id:"minecraft:emerald",Count:64,Slot:0}]}
FoodLevel饱食度{foodLevel:20}
XpLevel经验等级{XpLevel:30}

示例(修改玩家背包)

/data merge entity @p {Inventory:[{id:"minecraft:diamond",Count:64,Slot:0}]}

3. 如何查看 NBT 数据?

  • 使用 /data get 指令
  /data get entity @p Inventory  # 查看玩家背包数据
  /data get block ~ ~ ~ Items     # 查看箱子内容
  • 使用 F3 + I(Java版)
    手持物品时按 F3 + I 复制其 NBT 数据。

4. 高级 NBT 应用

(1) 自定义刷怪笼

/setblock ~ ~ ~ minecraft:spawner{SpawnData:{id:"minecraft:zombie",CustomName:'"Boss"',Health:100f},Delay:20,MinSpawnDelay:10,MaxSpawnDelay:100}

(2) 自定义药水效果

/give @p minecraft:potion{Potion:"minecraft:strong_strength",CustomPotionEffects:[{Id:1,Duration:600,Amplifier:2}]}

(3) 自定义村民交易

/summon minecraft:villager ~ ~ ~ {VillagerData:{profession:"minecraft:librarian"},Offers:{Recipes:[{buy:{id:"minecraft:emerald",Count:1},sell:{id:"minecraft:enchanted_book",Count:1,tag:{StoredEnchantments:[{id:"sharpness",lvl:5}]}}}]}}

5. 总结

用途关键 NBT 标签
物品Enchantments, display, Unbreakable
实体CustomName, Attributes, NoAI
方块Items, Lock, CustomName
玩家Inventory, EnderItems, XpLevel

NBT 是 Minecraft 数据存储的核心,掌握它可以实现 自定义武器、特殊生物、自动化存储系统 等高级功能!

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注