Differences From Artifact [550cf0df14]:
- File matreg.lua — part of check-in [956134c50b] at 2020-08-11 21:39:39 on branch trunk — initial commit (user: lexi, size: 160) [annotate] [blame] [check-ins using]
To Artifact [4e7450eef0]:
- File matreg.lua — part of check-in [9278734b41] at 2020-08-17 13:35:12 on branch trunk — fix bugs, finish grinder, add conduits and condensers to extract and transmit energy from leylines (user: lexi, size: 307) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 |
return { lookup = {}; tools = { 'pick'; 'axe'; 'shovel'; 'sword'; 'hoe'; }; armors = { 'helmet'; 'boots'; 'shield'; 'chestplate'; 'leggings'; }; } |
| | > > > < > > > | > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
return { lookup = {}; tools = { pick = { cost = 3; }; axe = { cost = 3; }; shovel = { cost = 1; }; sword = { cost = 2; }; hoe = { cost = 2; }; }; armors = { helmet = { cost = 5 }; boots = { cost = 4 }; leggings = { cost = 6 }; chestplate = { cost = 8 }; shield = { cost = 7 }; }; } |