Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 399948e

Browse files
committed
Make tools enchantable
1 parent 1e5cc07 commit 399948e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

make.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,40 @@
99
"item": "minecraft:netherite_axe",
1010
"adjective": "upgrade.minecraft.diamond_axe.adjective",
1111
"damageMultiplier": 6,
12+
"allowEnchantments": True,
13+
"consumeDurability": "when_enchanted",
1214
},
1315
"minecraft:netherite_pickaxe": {
1416
"type": "computercraft:tool",
1517
"item": "minecraft:netherite_pickaxe",
1618
"adjective": "upgrade.minecraft.diamond_pickaxe.adjective",
19+
"allowEnchantments": True,
20+
"consumeDurability": "when_enchanted",
1721
},
1822
"minecraft:netherite_hoe": {
1923
"type": "computercraft:tool",
2024
"item": "minecraft:netherite_hoe",
2125
"adjective": "upgrade.minecraft.diamond_hoe.adjective",
2226
"breakable": "computercraft:turtle_hoe_harvestable",
27+
"allowEnchantments": True,
28+
"consumeDurability": "when_enchanted",
2329
},
2430
"minecraft:netherite_shovel": {
2531
"type": "computercraft:tool",
2632
"item": "minecraft:netherite_shovel",
2733
"adjective": "upgrade.minecraft.diamond_shovel.adjective",
2834
"breakable": "computercraft:turtle_shovel_harvestable",
35+
"allowEnchantments": True,
36+
"consumeDurability": "when_enchanted",
2937
},
3038
"minecraft:netherite_sword": {
3139
"type": "computercraft:tool",
3240
"item": "minecraft:netherite_sword",
3341
"adjective": "upgrade.minecraft.diamond_sword.adjective",
3442
"breakable": "computercraft:turtle_sword_harvestable",
3543
"damageMultiplier": 9,
44+
"allowEnchantments": True,
45+
"consumeDurability": "when_enchanted",
3646
},
3747
}
3848

pack.mcmeta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
3-
"pack_format": 9,
3+
"pack_format": 12,
44
"description": "Netherite tools for ComputerCraft"
55
}
66
}

0 commit comments

Comments
 (0)