Differences From
Artifact [550cf0df14]:
1 1 return {
2 2 lookup = {};
3 3 tools = {
4 - 'pick'; 'axe'; 'shovel';
5 - 'sword'; 'hoe';
4 + pick = { cost = 3; };
5 + axe = { cost = 3; };
6 + shovel = { cost = 1; };
7 + sword = { cost = 2; };
8 + hoe = { cost = 2; };
6 9 };
7 10 armors = {
8 - 'helmet'; 'boots'; 'shield';
9 - 'chestplate'; 'leggings';
11 + helmet = { cost = 5 };
12 + boots = { cost = 4 };
13 + leggings = { cost = 6 };
14 + chestplate = { cost = 8 };
15 + shield = { cost = 7 };
10 16 };
11 17 }