sorcery  Diff

Differences From Artifact [550cf0df14]:

To Artifact [4e7450eef0]:


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 };
	};
}