1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
..
29
30
31
32
33
34
35
36
37
38
39
40
41
42
...
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
-- an optional 'enchant' function can be defined, and will
-- be called when the enchantment is placed on the object
local allgroups = {
'sword'; 'pick'; 'pickaxe';
'sickle'; 'scythe'; 'shovel';
'hoe'; 'helmet'; 'leggings';
'chestplate'; 'boots';
}
return {
endure = { -- withstand more blows
name = 'Endure';
cost = 1;
tone = {232,102,255};
desc = 'durability magnified';
affinity = 'counterpraxic';
................................................................................
return stack
end;
};
drain = {
groups = {'sword'};
cost = 4;
}; -- health vampirism
harvest = { -- kills or digging ore replenish durability
name = 'Harvest';
cost = 0; -- energy is only depleted when repair takes place
tone = {255,84,187};
affinity = 'syncretic';
groups = {
'pick'; 'pickaxe'; 'sword';
................................................................................
end
end;
};
pierce = { -- faster mining speed
name = 'Pierce';
cost = 3;
tone = {113,240,251};
groups = {
'pick';'pickaxe';'axe';'shovel';'sickle';
};
desc = 'rip through solid stone or wood like a hot knife through butter';
recipe = {
{lens = 'amplifier', gem = 'diamond', dmg = 4};
{lens = 'amplifier', gem = 'ruby', dmg = 4};
{lens = 'rectifier', gem = 'diamond', dmg = 2};
|
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
..
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
-- an optional 'enchant' function can be defined, and will
-- be called when the enchantment is placed on the object
local allgroups = {
'sword'; 'pick'; 'pickaxe';
'sickle'; 'axe'; 'scythe';
'shovel'; 'hoe'; 'helmet';
'leggings'; 'chestplate'; 'boots';
}
local digtools = {
'pick'; 'pickaxe'; 'sickle';
'shovel'; 'axe';
}
return {
endure = { -- withstand more blows
name = 'Endure';
cost = 1;
tone = {232,102,255};
desc = 'durability magnified';
affinity = 'counterpraxic';
................................................................................
return stack
end;
};
drain = {
groups = {'sword'};
cost = 4;
}; -- health vampirism
glitter = { -- created prolonged light on digging
name = 'Glitter';
groups = digtools;
affinity = 'cognic';
cost = 1;
tone = {255,235,195};
desc = 'Leave a trail of light hanging in the air as you dig';
};
harvest = { -- kills or digging ore replenish durability
name = 'Harvest';
cost = 0; -- energy is only depleted when repair takes place
tone = {255,84,187};
affinity = 'syncretic';
groups = {
'pick'; 'pickaxe'; 'sword';
................................................................................
end
end;
};
pierce = { -- faster mining speed
name = 'Pierce';
cost = 3;
tone = {113,240,251};
groups = digtools;
{
'pick';'pickaxe';'axe';'shovel';'sickle';
};
desc = 'rip through solid stone or wood like a hot knife through butter';
recipe = {
{lens = 'amplifier', gem = 'diamond', dmg = 4};
{lens = 'amplifier', gem = 'ruby', dmg = 4};
{lens = 'rectifier', gem = 'diamond', dmg = 2};
|