1
2
3
4
5
6
7
..
18
19
20
21
22
23
24
25
26
|
local grain = {
hardness = 1;
value = 1;
powder = 'farming:flour';
grindcost = 4;
}
return {
................................................................................
}
};
ley = {
['default:mese'] = {
power = 0.25;
mode = 'produce';
};
};
}
|
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
..
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
-- compatibility tables
-- this file is used to hold information that would normally
-- be tagged in the _sorcery or _proto fields of an item's
-- definition, but cannot be placed there because the item
-- is outside the control of the author and its module does
-- not cooperate with sorcery. it is used by itemclass.lua
-- to seamlessly locate the material properties and
-- capabilities of an item.
local grain = {
hardness = 1;
value = 1;
powder = 'farming:flour';
grindcost = 4;
}
return {
................................................................................
}
};
ley = {
['default:mese'] = {
power = 0.25;
mode = 'produce';
};
};
gems = {
['default:mese_crystal'] = {
id = 'mese', gem = true;
value = 9, raw = true;
};
['default:mese_crystal_fragment'] = {
id = 'mese', gem = true;
value = 1, raw = true;
};
['default:diamond'] = {
id = 'diamond', gem = true;
value = 9, raw = true;
};
};
}
|