Home Daily Log Favorite Projects Minecraft Commands Downloadables About

These are the commands I used in my videos. You can copy the command by clicking on it if you have javascript enabled (and you're not on an evil browser like Safari on the iPhone >:[ ).

Do you know how long it took me to manually update and optimize all these commands for 1.20.5+? I don't either, but I do know that it was a long time. I hope they never change commands as much as they did then. (I probably could have made a program to do it automatically.)

Video Commands
Minecraft Zip-Line Command

Zip-line helmet command: /give @p leather_helmet[custom_name='{"text":"Zip-Line Helmet","italic":false}',custom_data={zipline:1}]

Repeating commands:

  • /execute at @r[nbt={Inventory:[{Slot:103b,id:"minecraft:leather_helmet",components:{"minecraft:custom_data":{zipline:1}}}]}] if block ~ ~2 ~ chain run attribute @p gravity modifier add zip-line -1 add_multiplied_total
  • /execute at @r[nbt={attributes:[{modifiers:[{id:"minecraft:zip-line"}]}]}] unless block ~ ~2 ~ chain run attribute @p gravity modifier remove zip-line
  • /attribute @a[limit=1,nbt={attributes:[{modifiers:[{id:"minecraft:zip-line"}]}]},nbt=!{Inventory:[{Slot:103b,id:"minecraft:leather_helmet",components:{"minecraft:custom_data":{zipline:1}}}]}] gravity modifier remove zip-line

Pre 1.20.5:

Zip-line helmet command: /give @p leather_helmet{zipline:1,display:{Name:'{"text":"Zip-Line Helmet","italic":false}'}}

Repeating command: /execute at @r[nbt={Inventory:[{Slot:103b,id:"minecraft:leather_helmet",tag:{zipline:1}}]}] if block ~ ~2 ~ chain run effect give @p levitation 1 255 true

Viking Helmet In Vanilla Minecraft

Viking Helmet: /give @p iron_helmet[custom_name='{"text":"Viking Helmet","color":"gray","bold":true,"italic":false}',attribute_modifiers=[{type:"attack_damage",id:"1426365515",amount:1,operation:"add_value",slot:"head"}]]

Villager: /summon villager ~ ~0.5 ~ {PersistenceRequired:1b,Offers:{Recipes:[{buy:{count:1,id:"iron_helmet"},buyB:{count:1,id:"goat_horn",components:{"instrument":"seek_goat_horn"}},sell:{count:1,id:"iron_helmet",components:{"custom_name":'{"text":"Viking Helmet","color":"gray","bold":true,"italic":false}',"attribute_modifiers":[{type:"attack_damage",id:"1426365515",amount:1,operation:"add_value",slot:"head"}]}}}]},VillagerData:{profession:"minecraft:armorer",level:99,type:"minecraft:plains"}}

Cookie: /give @p cookie[custom_name='{"text":"Cookie of Power","color":"gold","italic":false,"bold":true}',attribute_modifiers=[{type:"attack_damage",id:"868313228",amount:10,operation:"add_value",slot:"mainhand"},{type:"attack_speed",id:"2046646082",amount:1,operation:"add_value",slot:"mainhand"},{type:"armor",id:"214945863",amount:5,operation:"add_value",slot:"offhand"}]]

Pre 1.20.5:

Viking Helmet: /give @p iron_helmet{display:{Name:'{"text":"Viking Helmet","color":"gray","bold":true,"italic":false}'},AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:1,Operation:0,UUID:[I;1426365515,-1682029738,-2084689729,160130069],Slot:"head"}]}

Villager: /summon villager ~ ~-2.5 ~ {CustomNameVisible:0b,PersistenceRequired:1b,VillagerData:{level:99,profession:"minecraft:armorer"},Offers:{Recipes:[{buy:{id:"minecraft:iron_helmet",Count:1b},buyB:{id:"minecraft:goat_horn",Count:1b,tag:{instrument:"minecraft:seek_goat_horn"}},sell:{id:"minecraft:iron_helmet",Count:1b,tag:{display:{Name:'{"text":"Viking Helmet","color":"gray","bold":true,"italic":false}'},AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:1,Operation:0,UUID:[I;1426365515,-1682029738,-2084689729,160130069],Slot:"head"}]}}}]}}

Cookie: /give @p cookie{display:{Name:'{"text":"Cookie of Power","color":"gold","italic":false,"bold":true}'},AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:10,Operation:0,UUID:[I;868313228,779962666,-1441406117,835081205],Slot:"mainhand"},{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;2046646082,-1743765433,-1575317940,-1846976935],Slot:"mainhand"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;-214945863,-2096740409,-1229559255,-1461295544],Slot:"offhand"}]}

Morph Into Any Mob In Vanilla Minecraft

Setting up no collision (Not needed for some entities like bats):

  1. /team add noCollide
  2. /team modify noCollide collisionRule never

Summon Mob: /summon (Mob ID) ~ ~1 ~ {CustomName:"\"(Mob Name)\"",CustomNameVisible:1,NoAI:1b,PersistenceRequired:1b,Silent:1,Invulnerable:1,Tags:["(Mob Tag)"],Team:noCollide}

Repeating commands:

  1. /teleport @e[tag=(Mob Tag),type=(Mob ID)] (Player Username)
  2. /effect give (Player Username) invisibility 1 1 true
Mud Armor In Vanilla Minecraft

Muddy Cap: /give @p leather_helmet[custom_name='{"text":"Muddy Cap","italic":false}',dyed_color={show_in_tooltip:0,rgb:4928550},attribute_modifiers=[{type:"movement_speed",id:"1229080926",amount:-0.05,operation:"add_multiplied_base",slot:"head"},{type:"luck",id:"1467061410",amount:0.1,operation:"add_multiplied_base",slot:"head"},{type:"armor",id:"2086697932",amount:1,operation:"add_value",slot:"head"}]]

Muddy Shirt: /give @p leather_chestplate[custom_name='{"text":"Muddy Shirt","italic":false}',dyed_color={show_in_tooltip:0,rgb:4928550},attribute_modifiers=[{type:"movement_speed",id:"1264153971",amount:-0.05,operation:"add_multiplied_base",slot:"chest"},{type:"luck",id:"560511442",amount:0.1,operation:"add_multiplied_base",slot:"chest"},{type:"armor",id:"241589069",amount:3,operation:"add_value",slot:"chest"}]]

Muddy Pants: /give @p leather_leggings[custom_name='{"text":"Muddy Pants","italic":false}',dyed_color={show_in_tooltip:0,rgb:4928550},attribute_modifiers=[{type:"movement_speed",id:"1028156263",amount:-0.05,operation:"add_multiplied_base",slot:"legs"},{type:"luck",id:"1057786816",amount:0.1,operation:"add_multiplied_base",slot:"legs"},{type:"armor",id:"2143488350",amount:2,operation:"add_value",slot:"legs"}]]

Muddy Shoes: /give @p leather_boots[custom_name='{"text":"Muddy Shoes","italic":false}',dyed_color={show_in_tooltip:0,rgb:4928550},attribute_modifiers=[{type:"movement_speed",id:"215821449",amount:-0.05,operation:"add_multiplied_base",slot:"feet"},{type:"luck",id:"1306514165",amount:0.1,operation:"add_multiplied_base",slot:"feet"},{type:"armor",id:"380721512",amount:1,operation:"add_value",slot:"feet"}]]

Mud Helmet: /give @p leather_helmet[custom_name='{"text":"Mud Helmet","italic":false}',dyed_color={show_in_tooltip:0,rgb:10447937},attribute_modifiers=[{type:"attack_speed",id:"769768176",amount:1,operation:"add_value",slot:"head"},{type:"knockback_resistance",id:"1340870614",amount:0.1,operation:"add_value",slot:"head"},{type:"movement_speed",id:"1343715351",amount:0.05,operation:"add_multiplied_base",slot:"head"},{type:"armor",id:"1781938173",amount:2,operation:"add_value",slot:"head"}]]

Mud Chestplate: /give @p leather_chestplate[custom_name='{"text":"Mud Chestplate","italic":false}',dyed_color={show_in_tooltip:0,rgb:10447937},attribute_modifiers=[{type:"attack_speed",id:"237988508",amount:1,operation:"add_value",slot:"chest"},{type:"knockback_resistance",id:"1453487558",amount:0.1,operation:"add_value",slot:"chest"},{type:"movement_speed",id:"1574561153",amount:0.05,operation:"add_multiplied_base",slot:"chest"},{type:"armor",id:"770160276",amount:4,operation:"add_value",slot:"chest"}]]

Mud Leggings: /give @p leather_leggings[custom_name='{"text":"Mud Leggings","italic":false}',dyed_color={show_in_tooltip:0,rgb:10447937},attribute_modifiers=[{type:"attack_speed",id:"872517297",amount:1,operation:"add_value",slot:"legs"},{type:"knockback_resistance",id:"321487189",amount:0.1,operation:"add_value",slot:"legs"},{type:"movement_speed",id:"1962731991",amount:0.05,operation:"add_multiplied_base",slot:"legs"},{type:"armor",id:"805321576",amount:3,operation:"add_value",slot:"legs"}]]

Mud Boots: /give @p leather_boots[custom_name='{"text":"Mud Boots","italic":false}',dyed_color={show_in_tooltip:0,rgb:10447937},attribute_modifiers=[{type:"attack_speed",id:"708500156",amount:1,operation:"add_value",slot:"feet"},{type:"knockback_resistance",id:"601975309",amount:0.1,operation:"add_value",slot:"feet"},{type:"movement_speed",id:"1114613627",amount:0.05,operation:"add_multiplied_base",slot:"feet"},{type:"armor",id:"2050776265",amount:2,operation:"add_value",slot:"feet"}]]

Villager: /summon minecraft:villager ~ ~0.5 ~ {PersistenceRequired:1b,Offers:{Recipes:[{buy:{count:5,id:"mud"},sell:{count:1,id:"leather_helmet",components:{"custom_name":'{"text":"Muddy Cap","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:4928550},"attribute_modifiers":[{type:"movement_speed",id:"1229080926",amount:-0.05,operation:"add_multiplied_base",slot:"head"},{type:"luck",id:"1467061410",amount:0.1,operation:"add_multiplied_base",slot:"head"},{type:"armor",id:"2086697932",amount:1,operation:"add_value",slot:"head"}]}}},{buy:{count:8,id:"mud"},sell:{count:1,id:"leather_chestplate",components:{"custom_name":'{"text":"Muddy Shirt","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:4928550},"attribute_modifiers":[{type:"movement_speed",id:"1264153971",amount:-0.05,operation:"add_multiplied_base",slot:"chest"},{type:"luck",id:"560511442",amount:0.1,operation:"add_multiplied_base",slot:"chest"},{type:"armor",id:"241589069",amount:3,operation:"add_value",slot:"chest"}]}}},{buy:{count:7,id:"mud"},sell:{count:1,id:"leather_leggings",components:{"custom_name":'{"text":"Muddy Pants","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:4928550},"attribute_modifiers":[{type:"movement_speed",id:"1028156263",amount:-0.05,operation:"add_multiplied_base",slot:"legs"},{type:"luck",id:"1057786816",amount:0.1,operation:"add_multiplied_base",slot:"legs"},{type:"armor",id:"2143488350",amount:2,operation:"add_value",slot:"legs"}]}}},{buy:{count:4,id:"mud"},sell:{count:1,id:"leather_boots",components:{"custom_name":'{"text":"Muddy Shoes","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:4928550},"attribute_modifiers":[{type:"movement_speed",id:"215821449",amount:-0.05,operation:"add_multiplied_base",slot:"feet"},{type:"luck",id:"1306514165",amount:0.1,operation:"add_multiplied_base",slot:"feet"},{type:"armor",id:"380721512",amount:1,operation:"add_value",slot:"feet"}]}}},{buy:{count:5,id:"packed_mud"},sell:{count:1,id:"leather_helmet",components:{"custom_name":'{"text":"Mud Helmet","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:10447937},"attribute_modifiers":[{type:"attack_speed",id:"769768176",amount:1,operation:"add_value",slot:"head"},{type:"knockback_resistance",id:"1340870614",amount:0.1,operation:"add_value",slot:"head"},{type:"movement_speed",id:"1343715351",amount:0.05,operation:"add_multiplied_base",slot:"head"},{type:"armor",id:"1781938173",amount:2,operation:"add_value",slot:"head"}]}}},{buy:{count:8,id:"packed_mud"},sell:{count:1,id:"leather_chestplate",components:{"custom_name":'{"text":"Mud Chestplate","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:10447937},"attribute_modifiers":[{type:"attack_speed",id:"237988508",amount:1,operation:"add_value",slot:"chest"},{type:"knockback_resistance",id:"1453487558",amount:0.1,operation:"add_value",slot:"chest"},{type:"movement_speed",id:"1574561153",amount:0.05,operation:"add_multiplied_base",slot:"chest"},{type:"armor",id:"770160276",amount:4,operation:"add_value",slot:"chest"}]}}},{buy:{count:7,id:"packed_mud"},sell:{count:1,id:"leather_leggings",components:{"custom_name":'{"text":"Mud Leggings","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:10447937},"attribute_modifiers":[{type:"attack_speed",id:"872517297",amount:1,operation:"add_value",slot:"legs"},{type:"knockback_resistance",id:"321487189",amount:0.1,operation:"add_value",slot:"legs"},{type:"movement_speed",id:"1962731991",amount:0.05,operation:"add_multiplied_base",slot:"legs"},{type:"armor",id:"805321576",amount:3,operation:"add_value",slot:"legs"}]}}},{buy:{count:4,id:"packed_mud"},sell:{count:1,id:"leather_boots",components:{"custom_name":'{"text":"Mud Boots","italic":false}',"dyed_color":{show_in_tooltip:0,rgb:10447937},"attribute_modifiers":[{type:"attack_speed",id:"708500156",amount:1,operation:"add_value",slot:"feet"},{type:"knockback_resistance",id:"601975309",amount:0.1,operation:"add_value",slot:"feet"},{type:"movement_speed",id:"1114613627",amount:0.05,operation:"add_multiplied_base",slot:"feet"},{type:"armor",id:"2050776265",amount:2,operation:"add_value",slot:"feet"}]}}}]},VillagerData:{profession:"minecraft:mason",level:99,type:"minecraft:plains"}}

Pre 1.20.5:

Muddy Cap: /give @p minecraft:leather_helmet{display:{Name:'{"text":"Muddy Cap","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;1229080926,-1540994820,-1152352285,-1559392951],Slot:"head"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;-1467061410,181683452,-1367911730,-268109010],Slot:"head"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;2086697932,995771365,-1206761138,803983304],Slot:"head"}]}

Muddy Shirt: /give @p minecraft:leather_chestplate{display:{Name:'{"text":"Muddy Shirt","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;1264153971,-1985002611,-1365143352,1588600952],Slot:"chest"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;-560511442,-331199310,-1773350608,484856262],Slot:"chest"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;-241589069,-457817424,-1214744978,902594117],Slot:"chest"}]}

Muddy Pants: /give @p minecraft:leather_leggings{display:{Name:'{"text":"Muddy Pants","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;1028156263,-2108997206,-1494010867,-1230950708],Slot:"legs"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;-1057786816,869486184,-1110516481,-2039530339],Slot:"legs"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;2143488350,129975941,-1705963774,818979589],Slot:"legs"}]}

Muddy Shoes: /give @p minecraft:leather_boots{display:{Name:'{"text":"Muddy Shoes","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;-215821449,-1092665002,-1380663740,1856152207],Slot:"feet"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;1306514165,1052198183,-1471457637,-1004826665],Slot:"feet"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;-380721512,1250182621,-1413232463,-1063359011],Slot:"feet"}]}

Mud Helmet: /give @p minecraft:leather_helmet{display:{Name:'{"text":"Mud Helmet","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;769768176,-89110852,-1335748856,1747473306],Slot:"head"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;1340870614,61361346,-1281873491,876100695],Slot:"head"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;-1343715351,745358312,-1943940926,-316378689],Slot:"head"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1781938173,668485921,-1272479641,818790071],Slot:"head"}]}

Mud Chestplate: /give @p minecraft:leather_chestplate{display:{Name:'{"text":"Mud Chestplate","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;237988508,-613593599,-1680221095,279417272],Slot:"chest"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;1453487558,1719553665,-1276462818,-810821796],Slot:"chest"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;-1574561153,1326137473,-2087485931,-1619692810],Slot:"chest"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:4,Operation:0,UUID:[I;-770160276,1591429977,-1518447978,-165044778],Slot:"chest"}]}

Mud Leggings: /give @p minecraft:leather_leggings{display:{Name:'{"text":"Mud Leggings","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;-872517297,526008831,-1788657277,795811643],Slot:"legs"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;-321487189,1534478724,-1300606696,1640838120],Slot:"legs"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;-1962731991,-1736030650,-1715227628,-90320616],Slot:"legs"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;-805321576,-1405926013,-1462293558,-877301605],Slot:"legs"}]}

Mud Boots: /give @p minecraft:leather_boots{display:{Name:'{"text":"Mud Boots","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;708500156,797985913,-1681674525,-1213383556],Slot:"feet"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;601975309,432620696,-1110852670,1765628965],Slot:"feet"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;1114613627,-2059055724,-1621655857,1940097108],Slot:"feet"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;2050776265,422920560,-1239665671,-1129722713],Slot:"feet"}]}

Villager: /summon villager ~ ~-2.5 ~ {Silent:1b,PersistenceRequired:1b,VillagerData:{level:5,profession:"minecraft:mason"},Offers:{Recipes:[{buy:{id:"minecraft:mud",Count:5b},sell:{id:"minecraft:leather_helmet",Count:1b,tag:{display:{Name:'{"text":"Muddy Cap","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;1229080926,-1540994820,-1152352285,-1559392951],Slot:"head"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;-1467061410,181683452,-1367911730,-268109010],Slot:"head"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;2086697932,995771365,-1206761138,803983304],Slot:"head"}]}}},{buy:{id:"minecraft:mud",Count:8b},sell:{id:"minecraft:leather_chestplate",Count:1b,tag:{display:{Name:'{"text":"Muddy Shirt","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;1264153971,-1985002611,-1365143352,1588600952],Slot:"chest"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;-560511442,-331199310,-1773350608,484856262],Slot:"chest"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;-241589069,-457817424,-1214744978,902594117],Slot:"chest"}]}}},{buy:{id:"minecraft:mud",Count:7b},sell:{id:"minecraft:leather_leggings",Count:1b,tag:{display:{Name:'{"text":"Muddy Pants","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;1028156263,-2108997206,-1494010867,-1230950708],Slot:"legs"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;-1057786816,869486184,-1110516481,-2039530339],Slot:"legs"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;2143488350,129975941,-1705963774,818979589],Slot:"legs"}]}}},{buy:{id:"minecraft:mud",Count:4b},sell:{id:"minecraft:leather_boots",Count:1b,tag:{display:{Name:'{"text":"Muddy Shoes","italic":false}',color:4928550},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:-0.05,Operation:1,UUID:[I;-215821449,-1092665002,-1380663740,1856152207],Slot:"feet"},{AttributeName:"generic.luck",Name:"generic.luck",Amount:0.1,Operation:1,UUID:[I;1306514165,1052198183,-1471457637,-1004826665],Slot:"feet"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;-380721512,1250182621,-1413232463,-1063359011],Slot:"feet"}]}}},{buy:{id:"minecraft:packed_mud",Count:5b},sell:{id:"minecraft:leather_helmet",Count:1b,tag:{display:{Name:'{"text":"Mud Helmet","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;769768176,-89110852,-1335748856,1747473306],Slot:"head"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;1340870614,61361346,-1281873491,876100695],Slot:"head"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;-1343715351,745358312,-1943940926,-316378689],Slot:"head"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1781938173,668485921,-1272479641,818790071],Slot:"head"}]}}},{buy:{id:"minecraft:packed_mud",Count:8b},sell:{id:"minecraft:leather_chestplate",Count:1b,tag:{display:{Name:'{"text":"Mud Chestplate","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;237988508,-613593599,-1680221095,279417272],Slot:"chest"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;1453487558,1719553665,-1276462818,-810821796],Slot:"chest"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;-1574561153,1326137473,-2087485931,-1619692810],Slot:"chest"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:4,Operation:0,UUID:[I;-770160276,1591429977,-1518447978,-165044778],Slot:"chest"}]}}},{buy:{id:"minecraft:packed_mud",Count:7b},sell:{id:"minecraft:leather_leggings",Count:1b,tag:{display:{Name:'{"text":"Mud Leggings","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;-872517297,526008831,-1788657277,795811643],Slot:"legs"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;-321487189,1534478724,-1300606696,1640838120],Slot:"legs"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;-1962731991,-1736030650,-1715227628,-90320616],Slot:"legs"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;-805321576,-1405926013,-1462293558,-877301605],Slot:"legs"}]}}},{buy:{id:"minecraft:packed_mud",Count:4b},sell:{id:"minecraft:leather_boots",Count:1b,tag:{display:{Name:'{"text":"Mud Boots","italic":false}',color:10447937},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:1,Operation:0,UUID:[I;708500156,797985913,-1681674525,-1213383556],Slot:"feet"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.1,Operation:0,UUID:[I;601975309,432620696,-1110852670,1765628965],Slot:"feet"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.05,Operation:1,UUID:[I;1114613627,-2059055724,-1621655857,1940097108],Slot:"feet"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;2050776265,422920560,-1239665671,-1129722713],Slot:"feet"}]}}}]}}

How To Get Custom Player Heads In Minecraft

/give (selector) minecraft:player_head[profile="(player username)"]

Pre 1.20.5:

/give (selector) minecraft:player_heads{SkullOwner:"(player username)"}

How To Make Armor Stands Have Arms In Minecraft Java Edition

Repeating command: /execute as @e[type=minecraft:armor_stand] run data merge entity @s {ShowArms:1b}

Minecraft Crate Creation - Tutorial

Extra Loot For The Minecraft Crate I Made

Repeating commands:

  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/end_city_treasure
  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/stronghold_library
  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/buried_treasure
  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/bastion_treasure
  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/bastion_other
  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/shipwreck_treasure
  • /execute if block ~ ~3 ~ chest{Items:[{Slot:0b,id:"minecraft:netherite_ingot",count:1}]} run loot replace block ~ ~3 ~ container.0 loot minecraft:chests/village/village_weaponsmith
Minecraft Cauldron-Made Concrete Commands

Repeating commands:

  • /execute as @e[type=item,nbt={Item:{id:"minecraft:white_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:white_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:orange_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:orange_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:magenta_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:magenta_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:light_blue_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:light_blue_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:yellow_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:yellow_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:lime_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:lime_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:pink_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:pink_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:gray_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:gray_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:light_gray_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:light_gray_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:cyan_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:cyan_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:purple_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:purple_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:blue_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:blue_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:brown_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:brown_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:green_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:green_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:red_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:red_concrete"}}
  • /execute as @e[type=item,nbt={Item:{id:"minecraft:black_concrete_powder"}}] at @s if block ~ ~ ~ #minecraft:cauldrons unless block ~ ~ ~ minecraft:cauldron run data merge entity @s {Item:{id:"minecraft:black_concrete"}}
Make an End Gateway Go Wherever You Want in Minecraft

/setblock ~ ~ ~ minecraft:end_gateway{exit_portal:[I;(x-coordinate),(y-coordinate),(z-coordinate)]}

How To Create Invincible Blocks In Minecraft

Block display method (best method): /summon block_display ~-0.5 ~0.5 ~-0.5 {block_state:{Name:"(block id)"}}

Falling block method: /summon falling_block ~ ~0.5 ~ {BlockState:{Name:"(block id)"},NoGravity:1b,Time:-32767}

How To Make A Working Chair In Minecraft - Tutorial

/summon minecraft:pig ~ ~-1.8 ~ {NoAI:1b,PersistenceRequired:1b,Silent:1,Invulnerable:1,Saddle:1,active_effects:[{duration:-1,id:"invisibility",show_particles:0}]}

Boat With A Chest In Minecraft 1.18

/summon boat ~ ~0.5 ~ {Type:"oak",Passengers:[{id:"minecraft:chest_minecart",Tags:["ActiveEffects:[{Id:14","Amplifier:0","Duration:2147483647","ShowParticles:0b}]"]}]}

Hypixel Skyblock Idea - Crypintine

Crypt Core: /give @p player_head[profile={properties:[{name:"textures",value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzFkN2M4MTZmYzhjNjM2ZDdmNTBhOTNhMGJhN2FhZWZmMDZjOTZhNTYxNjQ1ZTllYjFiZWYzOTE2NTVjNTMxIn19fQ=="}]},custom_name='{"text":"Crypt Core","color":"green","italic":false}',lore=['{"text":"UNCOMMON","color":"green","italic":false,"bold":true}']]

Crypintine Fragment: /give @p minecraft:player_head[profile={properties:[{name:"textures",value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWI0ZWFjZWRiYjEzNWZlMTEwNzcyMWZhYmFiOTFhYjZjYjc4YjBmNDM2ZTQ1YmE2OTBjMzQ5N2M3ZGU4M2U3NyJ9fX0="}]},custom_name='{"text":"Crypintine Fragment","color":"blue","italic":false}',lore=['{"text":"RARE","color":"blue","italic":false,"bold":true}']]

Refined Crypintine Core: /give @p player_head[profile={properties:[{name:"textures",value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM3NjY2MTI5ZDI2NzhjYTNhOTM2NzgzNjU5NWRmODI4YWU5ZTM2NTg1MjNhZjUwYTJlNGFiYTQxMmYxNGUyZCJ9fX0="}]},custom_name='{"text":"Refined Crypintine Core","color":"dark_purple","italic":false}',lore=['{"text":"Right-click to view recipes!","color":"yellow","italic":false}','{"text":""}','{"text":"EPIC","color":"dark_purple","italic":false,"bold":true}']]

Crypintine Helmet: /give @p player_head[profile={properties:[{name:"textures",value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzJlMmQwZWQxNGMyMzg2MjY2NmI0MDVhZWZhYmM2NWE1N2EyNzFlODQyZmRhNWY0ZDE5ZTZiYzExOGNlMGM5NCJ9fX0="}]},custom_name='{"text":"Crypintine Helmet","color":"gold","italic":false}',lore=['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"350","color":"light_purple","extra":[{"text":" (550)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+155","color":"green","extra":[{"text":" (+330)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+120","color":"green","extra":[{"text":" (+220)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-5","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+5","color":"green","extra":[{"text":" (+10)","color":"dark_gray"}]}]}','{"text":""}','{"text":"See crypt tombs in the","color":"gray","italic":false}','{"text":"room you are in.","color":"gray","italic":false}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON BOOTS","color":"gold","italic":false,"bold":true}'],attribute_modifiers={modifiers:[{type:"armor",id:"1959582421",amount:1,operation:"add_value",slot:"head"},{type:"max_health",id:"1749591969",amount:2,operation:"add_value",slot:"head"}],show_in_tooltip:0},custom_data={CryptVision:1b},enchantments={levels:{},show_in_tooltip:0}]

Crypintine Chestplate: /give @p leather_chestplate[custom_name='{"text":"Crypintine Chestplate","color":"gold","italic":false}',dyed_color={rgb:5505024,show_in_tooltip:0},lore=['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"500","color":"light_purple","extra":[{"text":" (900)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+210","color":"green","extra":[{"text":" (+400)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+150","color":"green","extra":[{"text":" (+210)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-10","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+10","color":"green","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON CHESTPLATE","color":"gold","italic":false,"bold":true}'],enchantments={levels:{},show_in_tooltip:0},unbreakable={show_in_tooltip:0},attribute_modifiers={modifiers:[{type:"armor",id:"1933229778",amount:3,operation:"add_value",slot:"chest"},{type:"max_health",id:"217906701",amount:6,operation:"add_value",slot:"chest"}],show_in_tooltip:0}]

Crypintine Leggings: /give @p leather_leggings[custom_name='{"text":"Crypintine Leggings","color":"gold","italic":false}',dyed_color={rgb:5505024,show_in_tooltip:0},lore=['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"500","color":"light_purple","extra":[{"text":" (900)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+200","color":"green","extra":[{"text":" (+370)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+120","color":"green","extra":[{"text":" (+190)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-6","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+7","color":"green","extra":[{"text":" (+40)","color":"dark_gray"}]}]}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON LEGGINGS","color":"gold","italic":false,"bold":true}'],enchantments={levels:{},show_in_tooltip:0},unbreakable={show_in_tooltip:0},attribute_modifiers={modifiers:[{type:"armor",id:"1719024441",amount:2,operation:"add_value",slot:"legs"},{type:"max_health",id:"1892549658",amount:4,operation:"add_value",slot:"legs"}],show_in_tooltip:0}]

Crypintine Boots: /give @p leather_boots[custom_name='{"text":"Crypintine Boots","color":"gold","italic":false}',dyed_color={rgb:5505024,show_in_tooltip:0},lore=['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"300","color":"light_purple","extra":[{"text":" (500)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+150","color":"green","extra":[{"text":" (+320)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+115","color":"green","extra":[{"text":" (+200)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-5","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+5","color":"green","extra":[{"text":" (+10)","color":"dark_gray"}]}]}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON BOOTS","color":"gold","italic":false,"bold":true}'],enchantments={levels:{},show_in_tooltip:0},unbreakable={show_in_tooltip:0},attribute_modifiers={modifiers:[{type:"armor",id:"2001077570",amount:1,operation:"add_value",slot:"feet"},{type:"max_health",id:"1207447377",amount:2,operation:"add_value",slot:"feet"}],show_in_tooltip:0}]

Pre 1.20.5:

Crypt Core: /give @p minecraft:player_head{SkullOwner:{Id:[I;1275683968,1255558020,-1180031804,-266380137],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzFkN2M4MTZmYzhjNjM2ZDdmNTBhOTNhMGJhN2FhZWZmMDZjOTZhNTYxNjQ1ZTllYjFiZWYzOTE2NTVjNTMxIn19fQ=="}]}},display:{Name:'{"text":"Crypt Core","color":"green","italic":false}',Lore:['{"text":"UNCOMMON","color":"green","italic":false,"bold":true}']}}

Crypintine Fragment: /give @p minecraft:player_head{display:{Name:"{\"text\":\"Ball of Wool (pink)\"}"},SkullOwner:{Id:[I;-800223295,-427281656,-1501104488,-2122301888],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWI0ZWFjZWRiYjEzNWZlMTEwNzcyMWZhYmFiOTFhYjZjYjc4YjBmNDM2ZTQ1YmE2OTBjMzQ5N2M3ZGU4M2U3NyJ9fX0="}]}},display:{Name:'{"text":"Crypintine Fragment","color":"blue","italic":false}',Lore:['{"text":"RARE","color":"blue","italic":false,"bold":true}']}}

Refined Crypintine Core: /give @p minecraft:player_head{SkullOwner:{Id:[I;-579672945,926370780,-1533172374,2007537172],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM3NjY2MTI5ZDI2NzhjYTNhOTM2NzgzNjU5NWRmODI4YWU5ZTM2NTg1MjNhZjUwYTJlNGFiYTQxMmYxNGUyZCJ9fX0="}]}},display:{Name:'{"text":"Refined Crypintine Core","color":"dark_purple","italic":false}',Lore:['{"text":"Right-click to view recipes!","color":"yellow","italic":false}','{"text":""}','{"text":"EPIC","color":"dark_purple","italic":false,"bold":true}']}}

Crypintine Helmet: /give @p minecraft:player_head{SkullOwner:{Id:[I;1279869272,-1790427115,-1081395271,2037420597],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzJlMmQwZWQxNGMyMzg2MjY2NmI0MDVhZWZhYmM2NWE1N2EyNzFlODQyZmRhNWY0ZDE5ZTZiYzExOGNlMGM5NCJ9fX0="}]}},display:{Name:'{"text":"Crypintine Helmet","color":"gold","italic":false}',Lore:['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"350","color":"light_purple","extra":[{"text":" (550)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+155","color":"green","extra":[{"text":" (+330)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+120","color":"green","extra":[{"text":" (+220)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-5","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+5","color":"green","extra":[{"text":" (+10)","color":"dark_gray"}]}]}','{"text":""}','{"text":"See crypt tombs in the","color":"gray","italic":false}','{"text":"room you are in.","color":"gray","italic":false}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON BOOTS","color":"gold","italic":false,"bold":true}']},HideFlags:3,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;-1959582421,-1360116034,-2118751128,-1155549086],Slot:"head"},{AttributeName:"generic.max_health",Name:"generic.max_health",Amount:2,Operation:0,UUID:[I;-1749591969,2066434296,-1733590092,-1827957044],Slot:"head"}],CryptVision:1b}

Crypintine Chestplate: /give @p minecraft:leather_chestplate{display:{Name:'{"text":"Crypintine Chestplate","color":"gold","italic":false}',color:5505024,Lore:['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"500","color":"light_purple","extra":[{"text":" (900)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+210","color":"green","extra":[{"text":" (+400)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+150","color":"green","extra":[{"text":" (+210)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-10","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+10","color":"green","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON CHESTPLATE","color":"gold","italic":false,"bold":true}']},HideFlags:71,Unbreakable:1b,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;1933229778,296438475,-1570082068,-992136295],Slot:"chest"},{AttributeName:"generic.max_health",Name:"generic.max_health",Amount:6,Operation:0,UUID:[I;217906701,-177584597,-1369489476,-1642132090],Slot:"chest"}]}

Crypintine Leggings: /give @p minecraft:leather_leggings{display:{Name:'{"text":"Crypintine Leggings","color":"gold","italic":false}',color:5505024,Lore:['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"500","color":"light_purple","extra":[{"text":" (900)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+200","color":"green","extra":[{"text":" (+370)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+120","color":"green","extra":[{"text":" (+190)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-6","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+7","color":"green","extra":[{"text":" (+40)","color":"dark_gray"}]}]}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON LEGGINGS","color":"gold","italic":false,"bold":true}']},HideFlags:71,Unbreakable:1b,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;1719024441,1722633083,-1492368996,-838036166],Slot:"legs"},{AttributeName:"generic.max_health",Name:"generic.max_health",Amount:4,Operation:0,UUID:[I;-1892549658,-1633793490,-1839759092,-388267547],Slot:"legs"}]}

Crypintine Boots: /give @p leather_boots{display:{Name:'{"text":"Crypintine Boots","color":"gold","italic":false}',color:5505024,Lore:['{"text":"Gear Score: ","color":"gray","italic":false,"extra":[{"text":"300","color":"light_purple","extra":[{"text":" (500)","color":"dark_gray"}]}]}','{"text":"Strength: ","color":"gray","italic":false,"extra":[{"text":"+35","color":"red","extra":[{"text":" (+50)","color":"dark_gray"}]}]}','{"text":"Health: ","color":"gray","italic":false,"extra":[{"text":"+150","color":"green","extra":[{"text":" (+320)","color":"dark_gray"}]}]}','{"text":"Defence: ","color":"gray","italic":false,"extra":[{"text":"+115","color":"green","extra":[{"text":" (+200)","color":"dark_gray"}]}]}','{"text":"Speed: ","color":"gray","italic":false,"extra":[{"text":"-5","color":"green"}]}','{"text":"Intelligence: ","color":"gray","italic":false,"extra":[{"text":"+5","color":"green","extra":[{"text":" (+10)","color":"dark_gray"}]}]}','{"text":""}','{"text":"Full Set Bonus: Crypt Delirium","color":"gold","italic":false}','{"text":"Increases the damage you deal","color":"gray","italic":false}','{"text":"to crypt monsters by ","color":"gray","italic":false,"extra":[{"text":"20%","color":"red","extra":[{"text":".","color":"gray"}]}]}','{"text":""}','{"text":"LEGENDARY DUNGEON BOOTS","color":"gold","italic":false,"bold":true}']},HideFlags:71,Unbreakable:1b,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;2001077570,1070416703,-1654260143,-2144270800],Slot:"feet"},{AttributeName:"generic.max_health",Name:"generic.max_health",Amount:2,Operation:0,UUID:[I;1207447377,-1310373697,-1452721376,1353217019],Slot:"feet"}]}

How To Spawn Item Entities In Minecraft - Tutorial (pre 1.20.5)

Pre 1.20.5:

Basic command: /summon item ~ ~1 ~ {Item:{id:"(item id)",Count:1b}}

With Tags: /summon item ~ ~1 ~ {Item:{id:"(item id)",Count:1b,tag:{(tags)}}}

With Age: /summon item ~ ~1 ~ {Age:(number for age),Item:{id:"(item id)",Count:1b,tag:{(tags)}}}

With Pick Up Delay: /summon item ~ ~1 ~ {Age:(number for age),PickupDelay:(number of ticks),Item:{id:"(item id)",Count:1b,tag:{(tags)}}}

Copper Armor In Vanilla Minecraft

Copper Helmet: /give @p leather_helmet[custom_name='{"text":"Copper Helmet","italic":false}',dyed_color={rgb:16746324,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"1944267077",amount:2,operation:"add_value",slot:"head"}]]

Copper Chestplate: /give @p leather_chestplate[custom_name='{"text":"Copper Chestplate","italic":false}',dyed_color={rgb:16746324,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"257497951",amount:5,operation:"add_value",slot:"chest"}]]

Copper Leggings: /give @p leather_leggings[custom_name='{"text":"Copper Leggings","italic":false}',dyed_color={rgb:16746324,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"830340186",amount:3,operation:"add_value",slot:"legs"}]]

Copper Boots: /give @p leather_boots[custom_name='{"text":"Copper Boots","italic":false}',dyed_color={rgb:16746324,show_in_tooltip:0}]

Villager: /summon minecraft:villager ~ ~0.5 ~ {PersistenceRequired:1b,Offers:{Recipes:[{buy:{count:5,id:"copper_ingot"},sell:{count:1,id:"leather_helmet",components:{"custom_name":'{"text":"Copper Helmet","italic":false}',"dyed_color":{rgb:16746324,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"1944267077",amount:2,operation:"add_value",slot:"head"}]}}},{buy:{count:8,id:"copper_ingot"},sell:{count:1,id:"leather_chestplate",components:{"custom_name":'{"text":"Copper Chestplate","italic":false}',"dyed_color":{rgb:16746324,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"257497951",amount:5,operation:"add_value",slot:"chest"}]}}},{buy:{count:7,id:"copper_ingot"},sell:{count:1,id:"leather_leggings",components:{"custom_name":'{"text":"Copper Leggings","italic":false}',"dyed_color":{rgb:16746324,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"830340186",amount:3,operation:"add_value",slot:"legs"}]}}},{buy:{count:4,id:"copper_ingot"},sell:{count:1,id:"leather_boots",components:{"custom_name":'{"text":"Copper Boots","italic":false}',"dyed_color":{rgb:16746324,show_in_tooltip:0}}}}]},VillagerData:{profession:"minecraft:armorer",level:99,type:"minecraft:desert"}}

Pre 1.20.5:

Copper Helmet: /give @p leather_helmet{display:{Name:'{"text":"Copper Helmet","italic":false}',color:16746324},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1944267077,492324809,-1499207454,2144734106],Slot:"head"}]}

Copper Chestplate: /give @p leather_chestplate{display:{Name:'{"text":"Copper Chestplate","italic":false}',color:16746324},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;257497951,-608484043,-1458044505,1993313971],Slot:"chest"}]}

Copper Leggings: /give @p leather_leggings{display:{Name:'{"text":"Copper Leggings","italic":false}',color:16746324},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;-830340186,751321414,-1986854066,897125697],Slot:"legs"}],HideFlags:64}

Copper Boots: /give @p leather_boots{display:{Name:'{"text":"Copper Boots","italic":false}',color:16746324},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;333393158,287523214,-1968130485,1894777011],Slot:"feet"}],HideFlags:64}

Villager: /summon villager ~ ~0.5 ~ {VillagerData:{profession:armorer,level:99,type:desert},Invulnerable:1,PersistenceRequired:1,Offers:{Recipes:[{buy:{id:copper_ingot,Count:5},sell:{id:leather_helmet,Count:1,tag:{display:{Name:'{"text":"Copper Helmet","italic":false}',color:16746324},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1944267077,492324809,-1499207454,2144734106],Slot:"head"}]}},maxUses:1},{buy:{id:copper_ingot,Count:8},sell:{id:leather_chestplate,Count:1,tag:{display:{Name:'{"text":"Copper Chestplate","italic":false}',color:16746324},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;257497951,-608484043,-1458044505,1993313971],Slot:"chest"}]}},maxUses:1},{buy:{id:copper_ingot,Count:7},sell:{id:leather_leggings,Count:1,tag:{display:{Name:'{"text":"Copper Leggings","italic":false}',color:16746324},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:3,Operation:0,UUID:[I;-830340186,751321414,-1986854066,897125697],Slot:"legs"}],HideFlags:64}},maxUses:1},{buy:{id:copper_ingot,Count:4},sell:{id:leather_boots,Count:1,tag:{display:{Name:'{"text":"Copper Boots","italic":false}',color:16746324},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;333393158,287523214,-1968130485,1894777011],Slot:"feet"}],HideFlags:64}},maxUses:1}]}}

Amethyst Armor In Vanilla Minecraft

Amethyst Helmet: /give @p leather_helmet[custom_name='{"text":"Amethyst Helmet","italic":false}',dyed_color={rgb:13073919,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"652752200",amount:2,operation:"add_value",slot:"head"}],enchantment_glint_override=1]

Amethyst Chestplate: /give @p leather_chestplate[custom_name='{"text":"Amethyst Chestplate","italic":false}',dyed_color={rgb:13073919,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"1176144432",amount:5,operation:"add_value",slot:"chest"}],enchantment_glint_override=1]

Amethyst Leggings: /give @p leather_leggings[custom_name='{"text":"Amethyst Leggings","italic":false}',dyed_color={rgb:13073919,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"918327126",amount:4,operation:"add_value",slot:"legs"}],enchantment_glint_override=1]

Amethyst Boots: /give @p leather_boots[custom_name='{"text":"Amethyst Boots","italic":false}',dyed_color={rgb:13073919,show_in_tooltip:0},enchantment_glint_override=1]

Villager: /summon minecraft:villager ~ ~0.5 ~ {PersistenceRequired:1b,Offers:{Recipes:[{buy:{count:5,id:"amethyst_block"},sell:{count:1,id:"leather_helmet",components:{"custom_name":'{"text":"Amethyst Helmet","italic":false}',"dyed_color":{rgb:13073919,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"652752200",amount:2,operation:"add_value",slot:"head"}],"enchantment_glint_override":1}}},{buy:{count:8,id:"amethyst_block"},sell:{count:1,id:"leather_chestplate",components:{"custom_name":'{"text":"Amethyst Chestplate","italic":false}',"dyed_color":{rgb:13073919,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"1176144432",amount:5,operation:"add_value",slot:"chest"}],"enchantment_glint_override":1}}},{buy:{count:7,id:"amethyst_block"},sell:{count:1,id:"leather_leggings",components:{"custom_name":'{"text":"Amethyst Leggings","italic":false}',"dyed_color":{rgb:13073919,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"918327126",amount:4,operation:"add_value",slot:"legs"}],"enchantment_glint_override":1}}},{buy:{count:4,id:"amethyst_block"},sell:{count:1,id:"leather_boots",components:{"custom_name":'{"text":"Amethyst Boots","italic":false}',"dyed_color":{rgb:13073919,show_in_tooltip:0},"enchantment_glint_override":1}}}]},VillagerData:{profession:"minecraft:armorer",level:99,type:"minecraft:swamp"}}

Pre 1.20.5:

Amethyst Helmet: /give @p leather_helmet{display:{Name:'{"text":"Amethyst Helmet","italic":false}',color:13073919},HideFlags:64,Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;652752200,715997230,-1792316179,435411961],Slot:"head"}]}

Amethyst Chestplate: /give @p leather_chestplate{display:{Name:'{"text":"Amethyst Chestplate","italic":false}',color:13073919},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;-1176144432,-1459927737,-1280844043,-1654599266],Slot:"chest"}],Enchantments:[{}]}

Amethyst Leggings: /give @p leather_leggings{display:{Name:'{"text":"Amethyst Leggings","italic":false}',color:13073919},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:4,Operation:0,UUID:[I;918327126,-878227977,-1197686998,960280847],Slot:"legs"}],Enchantments:[{}]}

Amethyst Boots: /give @p leather_boots{display:{Name:'{"text":"Amethyst Boots","italic":false}',color:13073919},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;1885392762,155536461,-1571840591,-724803233],Slot:"feet"}],Enchantments:[{}]}

Villager: /summon villager ~ ~0.5 ~ {VillagerData:{profession:armorer,level:99,type:swamp},Invulnerable:1,Offers:{Recipes:[{buy:{id:amethyst_block,Count:5},sell:{id:leather_helmet,Count:1,tag:{display:{Name:'{"text":"Amethyst Helmet","italic":false}',color:13073919},HideFlags:64,Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;652752200,715997230,-1792316179,435411961],Slot:"head"}]}},maxUses:1},{buy:{id:amethyst_block,Count:8},sell:{id:leather_chestplate,Count:1,tag:{display:{Name:'{"text":"Amethyst Chestplate","italic":false}',color:13073919},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;-1176144432,-1459927737,-1280844043,-1654599266],Slot:"chest"}],Enchantments:[{}]}},maxUses:1},{buy:{id:amethyst_block,Count:7},sell:{id:leather_leggings,Count:1,tag:{display:{Name:'{"text":"Amethyst Leggings","italic":false}',color:13073919},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:4,Operation:0,UUID:[I;918327126,-878227977,-1197686998,960280847],Slot:"legs"}],Enchantments:[{}]}},maxUses:1},{buy:{id:amethyst_block,Count:4},sell:{id:leather_boots,Count:1,tag:{display:{Name:'{"text":"Amethyst Boots","italic":false}',color:13073919},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:1,Operation:0,UUID:[I;1885392762,155536461,-1571840591,-724803233],Slot:"feet"}],Enchantments:[{}]}},maxUses:1}]}}

Emerald Armor In Vanilla Minecraft

Emerald Helmet: /give @p leather_helmet[custom_name='{"text":"Emerald Helmet","italic":false}',dyed_color={rgb:65306,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"1904683480",amount:2,operation:"add_value",slot:"head"}]]

Emerald Chestplate: /give @p leather_chestplate[custom_name='{"text":"Emerald Chestplate","italic":false}',dyed_color={rgb:65306,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"1938872817",amount:6,operation:"add_value",slot:"chest"}]]

Emerald Leggings: /give @p leather_leggings[custom_name='{"text":"Emerald Leggings","italic":false}',dyed_color={rgb:65306,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"1843132515",amount:5,operation:"add_value",slot:"legs"}]]

Emerald Boots: /give @p leather_boots[custom_name='{"text":"Emerald Boots","italic":false}',dyed_color={rgb:65306,show_in_tooltip:0},attribute_modifiers=[{type:"armor",id:"1097520552",amount:2,operation:"add_value",slot:"feet"}]]

Villager: /summon minecraft:villager ~ ~0.5 ~ {PersistenceRequired:1b,Offers:{Recipes:[{buy:{count:5,id:"emerald"},sell:{count:1,id:"leather_helmet",components:{"custom_name":'{"text":"Emerald Helmet","italic":false}',"dyed_color":{rgb:65306,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"1904683480",amount:2,operation:"add_value",slot:"head"}]}}},{buy:{count:8,id:"emerald"},sell:{count:1,id:"leather_chestplate",components:{"custom_name":'{"text":"Emerald Chestplate","italic":false}',"dyed_color":{rgb:65306,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"1938872817",amount:6,operation:"add_value",slot:"chest"}]}}},{buy:{count:7,id:"emerald"},sell:{count:1,id:"leather_leggings",components:{"custom_name":'{"text":"Emerald Leggings","italic":false}',"dyed_color":{rgb:65306,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"1843132515",amount:5,operation:"add_value",slot:"legs"}]}}},{buy:{count:4,id:"emerald"},sell:{count:1,id:"leather_boots",components:{"custom_name":'{"text":"Emerald Boots","italic":false}',"dyed_color":{rgb:65306,show_in_tooltip:0},"attribute_modifiers":[{type:"armor",id:"1097520552",amount:2,operation:"add_value",slot:"feet"}]}}}]},VillagerData:{profession:"minecraft:armorer",level:99,type:"minecraft:swamp"}}

Pre 1.20.5:

Emerald Helmet: /give @p leather_helmet{display:{Name:'{"text":"Emerald Helmet","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;1904683480,1321420324,-2067106260,457217280],Slot:"head"}]}

Emerald Chestplate: /give @p leather_chestplate{display:{Name:'{"text":"Emerald Chestplate","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:6,Operation:0,UUID:[I;1938872817,-456569385,-1585658429,-945873955],Slot:"chest"}]}

Emerald Leggings: /give @p leather_leggings{display:{Name:'{"text":"Emerald Leggings","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;1843132515,-283424986,-1341153011,99893638],Slot:"legs"}]}

Emerald Boots: /give @p minecraft:leather_boots{display:{Name:'{"text":"Emerald Boots","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1097520552,978930991,-2110591547,207733185],Slot:"feet"}]}

Villager: /summon villager ~ ~0.5 ~ {VillagerData:{profession:armorer,level:99,type:swamp},Invulnerable:1,PersistenceRequired:1,Offers:{Recipes:[{buy:{id:emerald,Count:5},sell:{id:leather_helmet,Count:1,tag:{display:{Name:'{"text":"Emerald Helmet","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;1904683480,1321420324,-2067106260,457217280],Slot:"head"}]}},maxUses:1},{buy:{id:emerald,Count:8},sell:{id:leather_chestplate,Count:1,tag:{display:{Name:'{"text":"Emerald Chestplate","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:6,Operation:0,UUID:[I;1938872817,-456569385,-1585658429,-945873955],Slot:"chest"}]}},maxUses:1},{buy:{id:emerald,Count:7},sell:{id:leather_leggings,Count:1,tag:{display:{Name:'{"text":"Emerald Leggings","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:5,Operation:0,UUID:[I;1843132515,-283424986,-1341153011,99893638],Slot:"legs"}]}},maxUses:1},{buy:{id:emerald,Count:4},sell:{id:leather_boots,Count:1,tag:{display:{Name:'{"text":"Emerald Boots","italic":false}',color:65306},HideFlags:64,AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1097520552,978930991,-2110591547,207733185],Slot:"feet"}]}},maxUses:1}]}}

Custom Weapons In Vanilla Minecraft

Periculum's Blade: /give @p netherite_sword[custom_name='[{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true},{"text":"Periculum\'s Blade","color":"#6B5D67","bold":false,"italic":false,"obfuscated":false},{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true}]',enchantment_glint_override=1,attribute_modifiers=[{type:"attack_damage",id:"333318988",amount:8,operation:"add_value",slot:"mainhand"},{type:"movement_speed",id:"1014668987",amount:0.25,operation:"add_multiplied_base",slot:"mainhand"},{type:"knockback_resistance",id:"1782804537",amount:0.25,operation:"add_multiplied_base",slot:"mainhand"}]]

Swift Blade: /give @p iron_sword[custom_name='{"text":"Swift Blade","color":"light_purple","bold":true,"italic":false}',lore=['{"text":"A sword that is faster","color":"white","italic":false}','{"text":"Than all others","color":"white","italic":false}'],attribute_modifiers=[{type:"attack_speed",id:"812842106",amount:10,operation:"add_value",slot:"mainhand"},{type:"attack_damage",id:"1071374619",amount:6,operation:"add_value",slot:"mainhand"}]]

Aspect of the Eeebs: /give @p netherite_sword[custom_name="[{\"text\":\"Aspect of the Eeebs\",\"color\":\"gold\",\"italic\":false,\"bold\":true}]",unbreakable={},enchantments={sharpness:6,looting:4,fire_aspect:3}]

Eeebscythe: /give @p netherite_hoe[custom_name='{"text":"Eeebscythe","color":"gold","bold":true,"italic":false}',unbreakable={show_in_tooltip:0},enchantments={sharpness:6,smite:6,fire_aspect:3,looting:4,efficiency:6,silk_touch:1},attribute_modifiers=[{type:"attack_damage",id:"1718371732",amount:8,operation:"add_value",slot:"mainhand"}]]

Healthy Sword: /give @p wooden_sword[custom_name='{"text":"Healthy Sword","color":"red","bold":true,"italic":false}',attribute_modifiers=[{type:"max_health",id:"647713352",amount:0.5,operation:"add_multiplied_base",slot:"mainhand"}]]

Blade of Luck: /give @p diamond_sword[custom_name='{"text":"Blade of Luck","color":"#11DB02","bold":true,"italic":false}',enchantment_glint_override=1,attribute_modifiers=[{type:"luck",id:"200542915",amount:3,operation:"add_value",slot:"mainhand"}]]

Villager: /summon minecraft:villager ~ ~0.5 ~ {PersistenceRequired:1b,Offers:{Recipes:[{buy:{count:5,id:"netherite_block"},buyB:{count:5,id:"nether_star"},sell:{count:1,id:"netherite_sword",components:{"custom_name":'[{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true},{"text":"Periculum\'s Blade","color":"#6B5D67","bold":false,"italic":false,"obfuscated":false},{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true}]',"enchantment_glint_override":1,"attribute_modifiers":[{type:"attack_damage",id:"333318988",amount:8,operation:"add_value",slot:"mainhand"},{type:"movement_speed",id:"1014668987",amount:0.25,operation:"add_multiplied_base",slot:"mainhand"},{type:"knockback_resistance",id:"1782804537",amount:0.25,operation:"add_multiplied_base",slot:"mainhand"}]}}},{buy:{count:1,id:"iron_sword"},buyB:{count:2,id:"nether_star"},sell:{count:1,id:"iron_sword",components:{"custom_name":'{"text":"Swift Blade","color":"light_purple","bold":true,"italic":false}',"lore":['{"text":"A sword that is faster","color":"white","italic":false}','{"text":"Than all others","color":"white","italic":false}'],"attribute_modifiers":[{type:"attack_speed",id:"812842106",amount:10,operation:"add_value",slot:"mainhand"},{type:"attack_damage",id:"1071374619",amount:6,operation:"add_value",slot:"mainhand"}]}}},{buy:{count:1,id:"netherite_sword"},buyB:{count:10,id:"netherite_ingot"},sell:{count:1,id:"netherite_sword",components:{"custom_name":"[{\"text\":\"Aspect of the Eeebs\",\"color\":\"gold\",\"italic\":false,\"bold\":true}]","unbreakable":{},"enchantments":{sharpness:6,looting:4,fire_aspect:3}}}},{buy:{count:1,id:"netherite_hoe"},buyB:{count:10,id:"netherite_ingot"},sell:{count:1,id:"netherite_hoe",components:{"custom_name":'{"text":"Eeebscythe","color":"gold","bold":true,"italic":false}',"unbreakable":{show_in_tooltip:0},"enchantments":{sharpness:6,smite:6,fire_aspect:3,looting:4,efficiency:6,silk_touch:1},"attribute_modifiers":[{type:"attack_damage",id:"1718371732",amount:8,operation:"add_value",slot:"mainhand"}]}}},{buy:{count:1,id:"wooden_sword"},buyB:{count:1,id:"tipped_arrow",components:{"potion_contents":{potion:"strong_healing"}}},sell:{count:1,id:"wooden_sword",components:{"custom_name":'{"text":"Healthy Sword","color":"red","bold":true,"italic":false}',"attribute_modifiers":[{type:"max_health",id:"647713352",amount:0.5,operation:"add_multiplied_base",slot:"mainhand"}]}}},{buy:{count:1,id:"diamond_sword"},buyB:{count:1,id:"tipped_arrow",components:{"potion_contents":{potion:"strong_poison"}}},sell:{count:1,id:"diamond_sword",components:{"custom_name":'{"text":"Blade of Luck","color":"#11DB02","bold":true,"italic":false}',"enchantment_glint_override":1,"attribute_modifiers":[{type:"luck",id:"200542915",amount:3,operation:"add_value",slot:"mainhand"}]}}},]},VillagerData:{profession:"minecraft:armorer",level:99,type:"minecraft:swamp"}}

Pre 1.20.5:

Periculum's Blade: /give @p netherite_sword{display:{Name:'[{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true},{"text":"Periculum\'s Blade","color":"#6B5D67","bold":false,"italic":false,"obfuscated":false},{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true}]'},Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:8,Operation:0,UUID:[I;333318988,-384351485,-1613763755,813745865],Slot:"mainhand"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.25,Operation:1,UUID:[I;-1014668987,-1004384727,-1290921449,1885121573],Slot:"mainhand"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.25,Operation:1,UUID:[I;1782804537,-1187100163,-1797079983,-1902536642],Slot:"mainhand"}]}

Swift Blade: /give @p iron_sword{display:{Name:'{"text":"Swift Blade","color":"light_purple","bold":true,"italic":false}',Lore:['{"text":"A sword that is faster","color":"white","italic":false}','{"text":"Than all others","color":"white","italic":false}']},AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:10,Operation:0,UUID:[I;-812842106,1506625920,-1604296737,564065615],Slot:"mainhand"},{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:6,Operation:0,UUID:[I;-1071374619,-1946793329,-2047933070,1207500166],Slot:"mainhand"}]}

Aspect of the Eeebs: /give @p minecraft:netherite_sword{display:{Name:"[{\"text\":\"Aspect of the Eeebs\",\"color\":\"gold\",\"italic\":false,\"bold\":true}]"},Unbreakable:1,Enchantments:[{id:sharpness,lvl:6},{id:looting,lvl:4},{id:fire_aspect,lvl:3}]}

Eeebscythe: /give @p netherite_hoe{display:{Name:'{"text":"Eeebscythe","color":"gold","bold":true,"italic":false}'},HideFlags:4,Unbreakable:1b,Enchantments:[{id:"minecraft:sharpness",lvl:6s},{id:"minecraft:smite",lvl:6s},{id:"minecraft:fire_aspect",lvl:3s},{id:"minecraft:looting",lvl:4s},{id:"minecraft:efficiency",lvl:6s},{id:"minecraft:silk_touch",lvl:1s}],AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:8,Operation:0,UUID:[I;-1718371732,410143530,-1291258252,-371338921],Slot:"mainhand"}]}

Healthy Sword: /give @p wooden_sword{display:{Name:'{"text":"Healthy Sword","color":"red","bold":true,"italic":false}'},AttributeModifiers:[{AttributeName:"generic.max_health",Name:"generic.max_health",Amount:0.5,Operation:1,UUID:[I;-647713352,-1141948244,-1735255167,205478486],Slot:"mainhand"}]}

Blade of Luck: /give @p diamond_sword{display:{Name:'{"text":"Blade of Luck","color":"#11DB02","bold":true,"italic":false}'},Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.luck",Name:"generic.luck",Amount:3,Operation:0,UUID:[I;-200542915,-1859696231,-1802764017,-632523417],Slot:"mainhand"}]}

Villager: /summon villager ~ ~0.5 ~ {VillagerData:{profession:weaponsmith,level:99,type:swamp},Invulnerable:1,PersistenceRequired:1,Offers:{Recipes:[{buy:{id:netherite_block,Count:5},buyB:{id:nether_star,Count:5},sell:{id:netherite_sword,Count:1,tag:{display:{Name:'[{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true},{"text":"Periculum\'s Blade","color":"#6B5D67","bold":false,"italic":false,"obfuscated":false},{"text":"p","color":"#6B5D67","bold":true,"italic":false,"obfuscated":true}]'},Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:8,Operation:0,UUID:[I;333318988,-384351485,-1613763755,813745865],Slot:"mainhand"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.25,Operation:1,UUID:[I;-1014668987,-1004384727,-1290921449,1885121573],Slot:"mainhand"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:0.25,Operation:1,UUID:[I;1782804537,-1187100163,-1797079983,-1902536642],Slot:"mainhand"}]}},maxUses:1},{buy:{id:iron_sword,Count:1},buyB:{id:nether_star,Count:2},sell:{id:iron_sword,Count:1,tag:{display:{Name:'{"text":"Swift Blade","color":"light_purple","bold":true,"italic":false}',Lore:['{"text":"A sword that is faster","color":"white","italic":false}','{"text":"Than all others","color":"white","italic":false}']},AttributeModifiers:[{AttributeName:"generic.attack_speed",Name:"generic.attack_speed",Amount:10,Operation:0,UUID:[I;-812842106,1506625920,-1604296737,564065615],Slot:"mainhand"},{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:6,Operation:0,UUID:[I;-1071374619,-1946793329,-2047933070,1207500166],Slot:"mainhand"}]}},maxUses:1},{buy:{id:netherite_sword,Count:1},buyB:{id:netherite_ingot,Count:10},sell:{id:netherite_sword,Count:1,tag:{display:{Name:"[{\"text\":\"Aspect of the Eeebs\",\"color\":\"gold\",\"italic\":false,\"bold\":true}]"},Unbreakable:1,Enchantments:[{id:sharpness,lvl:6},{id:looting,lvl:4},{id:fire_aspect,lvl:3}]}},maxUses:1},{buy:{id:netherite_hoe,Count:1},buyB:{id:netherite_ingot,Count:10},sell:{id:netherite_hoe,Count:1,tag:{display:{Name:'{"text":"Eeebscythe","color":"gold","bold":true,"italic":false}'},HideFlags:4,Unbreakable:1b,Enchantments:[{id:"minecraft:sharpness",lvl:6s},{id:"minecraft:smite",lvl:6s},{id:"minecraft:fire_aspect",lvl:3s},{id:"minecraft:looting",lvl:4s},{id:"minecraft:efficiency",lvl:6s},{id:"minecraft:silk_touch",lvl:1s}],AttributeModifiers:[{AttributeName:"generic.attack_damage",Name:"generic.attack_damage",Amount:8,Operation:0,UUID:[I;-1718371732,410143530,-1291258252,-371338921],Slot:"mainhand"}]}},maxUses:1},{buy:{id:wooden_sword,Count:1},buyB:{id:tipped_arrow,Count:1,tag:{Potion:"minecraft:strong_healing"}},sell:{id:wooden_sword,Count:1,tag:{display:{Name:'{"text":"Healthy Sword","color":"red","bold":true,"italic":false}'},AttributeModifiers:[{AttributeName:"generic.max_health",Name:"generic.max_health",Amount:0.5,Operation:1,UUID:[I;-647713352,-1141948244,-1735255167,205478486],Slot:"mainhand"}]}},maxUses:1},{buy:{id:diamond_sword,Count:1},buyB:{id:tipped_arrow,Count:1,tag:{Potion:"minecraft:strong_poison"}},sell:{id:diamond_sword,Count:1,tag:{display:{Name:'{"text":"Blade of Luck","color":"#11DB02","bold":true,"italic":false}'},Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.luck",Name:"generic.luck",Amount:3,Operation:0,UUID:[I;-200542915,-1859696231,-1802764017,-632523417],Slot:"mainhand"}]}},maxUses:1}]}}

Vanilla Minecraft Custom Armor Villagers

Villager: /summon villager ~ ~0.5 ~ {Invulnerable:1,PersistenceRequired:1,Offers:{Recipes:[{buy:{id:"nether_star",count:5},sell:{id:"leather_helmet",count:1,components:{"custom_name":'{"text":"Nether Star Helmet","italic":false}',"dyed_color":{rgb:15855103,show_in_tooltip:0},"enchantment_glint_override":1,"attribute_modifiers":[{type:"luck",id:"582833032",amount:1,operation:"add_value",slot:"head"},{type:"armor",id:"1158226580",amount:2,operation:"add_value",slot:"head"}]}}},{buy:{id:"nether_star",count:8},sell:{id:"leather_chestplate",count:1,components:{"custom_name":'{"text":"Nether Star Chestplate","italic":false}',"dyed_color":{rgb:15855103,show_in_tooltip:0},"enchantment_glint_override":1,"attribute_modifiers":[{type:"luck",id:"1274582114",amount:1,operation:"add_value",slot:"chest"},{type:"armor",id:"1472310288",amount:2,operation:"add_value",slot:"chest"}]}}},{buy:{id:"nether_star",count:7},sell:{id:"leather_leggings",count:1,components:{"custom_name":'{"text":"Nether Star Leggings","italic":false}',"dyed_color":{rgb:15855103,show_in_tooltip:0},"enchantment_glint_override":1,"attribute_modifiers":[{type:"luck",id:"2050747133",amount:1,operation:"add_value",slot:"legs"},{type:"armor",id:"1268597709",amount:2,operation:"add_value",slot:"legs"}]}}},{buy:{id:"nether_star",count:4},sell:{id:"leather_boots",count:1,components:{"custom_name":'{"text":"Nether Star Boots","italic":false}',"dyed_color":{rgb:15855103,show_in_tooltip:0},"enchantment_glint_override":1,"attribute_modifiers":[{type:"luck",id:"551802355",amount:1,operation:"add_value",slot:"feet"},{type:"armor",id:"565134337",amount:2,operation:"add_value",slot:"feet"}]}}},{buy:{id:"netherite_block",count:5},sell:{id:"netherite_helmet",count:1,components:{"custom_name":'{"text":"Pure Netherite Helmet","italic":false}',"attribute_modifiers":[{type:"armor",id:"809441337",amount:4,operation:"add_value",slot:"head"},{type:"armor_toughness",id:"265011404",amount:4,operation:"add_value",slot:"head"},{type:"knockback_resistance",id:"1467263049",amount:2,operation:"add_value",slot:"head"},{type:"movement_speed",id:"2082264654",amount:0.25,operation:"add_multiplied_base",slot:"head"}]}}},{buy:{id:"netherite_block",count:8},sell:{id:"netherite_chestplate",count:1,components:{"custom_name":'{"text":"Pure Netherite Chestplate","italic":false}',"attribute_modifiers":[{type:"armor",id:"1204005717",amount:9,operation:"add_value",slot:"chest"},{type:"armor_toughness",id:"1188288974",amount:4,operation:"add_value",slot:"chest"},{type:"knockback_resistance",id:"40040984",amount:2,operation:"add_value",slot:"chest"},{type:"movement_speed",id:"82457883",amount:0.25,operation:"add_multiplied_base",slot:"chest"}]}}},{buy:{id:"netherite_block",count:7},sell:{id:"netherite_leggings",count:1,components:{"custom_name":'{"text":"Pure Netherite Leggings","italic":false}',"attribute_modifiers":[{type:"armor",id:"775178100",amount:7,operation:"add_value",slot:"legs"},{type:"armor_toughness",id:"120176227",amount:4,operation:"add_value",slot:"legs"},{type:"knockback_resistance",id:"1131498033",amount:2,operation:"add_value",slot:"legs"},{type:"movement_speed",id:"1880311757",amount:0.25,operation:"add_multiplied_base",slot:"legs"}]}}},{buy:{id:"netherite_block",count:4},sell:{id:"netherite_boots",count:1,components:{"custom_name":'{"text":"Pure Netherite Boots","italic":false}',"attribute_modifiers":[{type:"armor",id:"809441337",amount:4,operation:"add_value",slot:"feet"},{type:"armor_toughness",id:"265011404",amount:4,operation:"add_value",slot:"feet"},{type:"knockback_resistance",id:"1467263049",amount:2,operation:"add_value",slot:"feet"},{type:"movement_speed",id:"2082264654",amount:0.25,operation:"add_multiplied_base",slot:"feet"}]}}}]},VillagerData:{profession:"minecraft:armorer",level:99,type:"minecraft:snow"}}

Pre 1.20.5:

Villager: /summon villager ~ ~0.5 ~ {VillagerData:{profession:armorer,level:99,type:snow},Invulnerable:1,PersistenceRequired:1,Offers:{Recipes:[{buy:{id:nether_star,Count:5},sell:{id:leather_helmet,Count:1,tag:{display:{Name:'{"text":"Nether Star Helmet","italic":false}',color:15855103},HideFlags:64,Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.luck",Name:"generic.luck",Amount:1,Operation:0,UUID:[I;-582833032,2033666545,-1223054464,812646580],Slot:"head"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1158226580,1271743663,-1846766492,-774107038],Slot:"head"}]}},maxUses:1},{buy:{id:nether_star,Count:8},sell:{id:leather_chestplate,Count:1,tag:{display:{Name:'{"text":"Nether Star Chestplate","italic":false}',color:15855103},HideFlags:64,Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.luck",Name:"generic.luck",Amount:1,Operation:0,UUID:[I;1274582114,-287619426,-1853928735,-1799066575],Slot:"chest"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;1472310288,873483167,-1283589476,2144584427],Slot:"chest"}]}},maxUses:1},{buy:{id:nether_star,Count:7},sell:{id:leather_leggings,Count:1,tag:{display:{Name:'{"text":"Nether Star Leggings","italic":false}',color:15855103},HideFlags:64,Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.luck",Name:"generic.luck",Amount:1,Operation:0,UUID:[I;2050747133,-1929166428,-1488940748,-1071485779],Slot:"legs"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;-1268597709,2028488353,-1469527397,1123457813],Slot:"legs"}]}},maxUses:1},{buy:{id:nether_star,Count:4},sell:{id:leather_boots,Count:1,tag:{display:{Name:'{"text":"Nether Star Boots","italic":false}',color:15855103},HideFlags:64,Enchantments:[{}],AttributeModifiers:[{AttributeName:"generic.luck",Name:"generic.luck",Amount:1,Operation:0,UUID:[I;551802355,1882736066,-2093026452,1383918202],Slot:"feet"},{AttributeName:"generic.armor",Name:"generic.armor",Amount:2,Operation:0,UUID:[I;565134337,-1878503931,-1698575122,1038302247],Slot:"feet"}]}},rewardExp:1b,maxUses:1},{buy:{id:netherite_block,Count:5},sell:{id:netherite_helmet,Count:1,tag:{display:{Name:'{"text":"Pure Netherite Helmet","italic":false}'},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:4,Operation:0,UUID:[I;809441337,-1758575251,-1797581409,1408604595],Slot:"head"},{AttributeName:"generic.armor_toughness",Name:"generic.armor_toughness",Amount:4,Operation:0,UUID:[I;-265011404,-914732359,-1699017468,1623079359],Slot:"head"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:2,Operation:0,UUID:[I;-1467263049,-2143076259,-1481175769,-1963612599],Slot:"head"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.25,Operation:1,UUID:[I;-2082264654,-61452598,-2033671273,2125362833],Slot:"head"}]}},maxUses:1},{buy:{id:netherite_block,Count:8},sell:{id:netherite_chestplate,Count:1,tag:{display:{Name:'{"text":"Pure Netherite Chestplate","italic":false}'},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:9,Operation:0,UUID:[I;-1204005717,775178100,-2075839746,-1618763491],Slot:"chest"},{AttributeName:"generic.armor_toughness",Name:"generic.armor_toughness",Amount:4,Operation:0,UUID:[I;1188288974,-120176227,-1495902899,-741753400],Slot:"chest"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:2,Operation:0,UUID:[I;40040984,1131498033,-1937662980,-1498305727],Slot:"chest"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.25,Operation:1,UUID:[I;82457883,1880311757,-1708412074,-668809649],Slot:"chest"}]}},maxUses:1},{buy:{id:netherite_block,Count:7},sell:{id:netherite_leggings,Count:1,tag:{display:{Name:'{"text":"Pure Netherite Leggings","italic":false}'},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:7,Operation:0,UUID:[I;-1204005717,775178100,-2075839746,-1618763491],Slot:"legs"},{AttributeName:"generic.armor_toughness",Name:"generic.armor_toughness",Amount:4,Operation:0,UUID:[I;1188288974,-120176227,-1495902899,-741753400],Slot:"legs"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:2,Operation:0,UUID:[I;40040984,1131498033,-1937662980,-1498305727],Slot:"legs"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.25,Operation:1,UUID:[I;82457883,1880311757,-1708412074,-668809649],Slot:"legs"}]}},maxUses:1},{buy:{id:netherite_block,Count:4},sell:{id:netherite_boots,Count:1,tag:{display:{Name:'{"text":"Pure Netherite Boots","italic":false}'},AttributeModifiers:[{AttributeName:"generic.armor",Name:"generic.armor",Amount:4,Operation:0,UUID:[I;809441337,-1758575251,-1797581409,1408604595],Slot:"feet"},{AttributeName:"generic.armor_toughness",Name:"generic.armor_toughness",Amount:4,Operation:0,UUID:[I;-265011404,-914732359,-1699017468,1623079359],Slot:"feet"},{AttributeName:"generic.knockback_resistance",Name:"generic.knockback_resistance",Amount:2,Operation:0,UUID:[I;-1467263049,-2143076259,-1481175769,-1963612599],Slot:"feet"},{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.25,Operation:1,UUID:[I;-2082264654,-61452598,-2033671273,2125362833],Slot:"feet"}]}},maxUses:1}]}}


I've got to put extra space down here to make it easier for people to see which row is the row that was linked if the bottom row is linked, so here's a random Minecraft screenshot:

Big boat. Also AHHH THE IMAGE DIDN'T LOAD OH NO MY IDEA DIDN'T WORK AHHHHHHH