minecraft 附魔指令
====
# 頭盔
## 親水性 水下呼吸 保護
```
/give @p minecraft:diamond_helmet
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:respiration,lvl:1000},
{id:aqua_affinity,lvl:1000},
{id:protection,lvl:1000},
]
}
```
# 胸甲
## 保護 爆炸保護 火焰保護
```
/give @p minecraft:diamond_chestplate
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:protection,lvl:1000},
{id:blast_protection,lvl:1000},
{id:fire_protection,lvl:1000},
]
}
```
# 護腿
## 保護 投射物保護 尖刺
```
/give @p minecraft:diamond_leggings
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:protection,lvl:1000},
{id:projectile_protection,lvl:1000},
{id:thorns,lvl:1000},
]
}
```
# 靴子
## 深海漫遊 輕盈 保護
```
/give @p minecraft:diamond_boots
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:depth_strider,lvl:1000},
{id:feather_falling,lvl:1000},
{id:protection,lvl:1000},
]
}
```
# 斧
## 無法破壞 效率 鋒利
diamond_axe
```
/give @p minecraft:diamond_axe
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:sharpness,lvl:5},
{id:efficiency,lvl:5},
]
}
```
diamond_pickaxe 鑽石鎬
```
/give @p minecraft:diamond_pickaxe
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:sharpness,lvl:5},
{id:efficiency,lvl:5},
]
}
```
diamond_sword
```
/give @p minecraft:diamond_sword
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:sharpness,lvl:5},
{id:efficiency,lvl:5},
]
}
```
diamond_shovel 鏟
```
/give @p minecraft:diamond_shovel
{Unbreakable:1,
display:{Name:{text:"指令產生",color:"gold"}},
Enchantments:[
{id:sharpness,lvl:5},
{id:efficiency,lvl:5},
]
}
```