Add a job for grabbing supplies from barrels

This commit is contained in:
2020-12-17 00:02:56 +00:00
parent 81f8a92cab
commit d108d7c817
3 changed files with 176 additions and 0 deletions
+13
View File
@@ -31,6 +31,15 @@ SHOVELS = [
'netherite_shovel',
]
AXES = [
'wooden_axe',
'stone_axe',
'golden_axe',
'iron_axe',
'diamond_axe',
'netherite_axe',
]
SAPLINGS = [
'oak_sapling',
'spruce_sapling',
@@ -48,6 +57,10 @@ SHOVEL_IDS = set()
for item_name in SHOVELS:
SHOVEL_IDS.add(ITEMS['minecraft:'+item_name]['protocol_id'])
AXE_IDS = set()
for item_name in AXES:
AXE_IDS.add(ITEMS['minecraft:'+item_name]['protocol_id'])
SAPLING_IDS = set()
for item_name in SAPLINGS:
SAPLING_IDS.add(ITEMS['minecraft:'+item_name]['protocol_id'])