22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
end;
infusion = 'sorcery:grease_pine';
};
Rapidity = {
color = {183,28,238}; qual = 'speed';
apply = inc('speed');
describe = function(potion)
return 'good', 'Quickened', 'This potion will take effect more quiclkly and easily'
end;
infusion = 'sorcery:liquid_sap_acacia_bottle';
};
Purity = {
color = {244,255,255}; qual = 'purity';
apply = inc('purity');
describe = function(potion)
return 'good', 'purified', 'This potion\'s impurities and undesirable side effects are diminished or eliminated'
end;
infusion = 'sorcery:oil_purifying';
};
Beauty = {
color = {255,20,226}; qual = 'beauty';
apply = inc('beauty');
describe = function(potion)
|
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
end;
infusion = 'sorcery:grease_pine';
};
Rapidity = {
color = {183,28,238}; qual = 'speed';
apply = inc('speed');
describe = function(potion)
return 'good', 'quickened', 'This potion will take effect more quickly and easily'
end;
infusion = 'sorcery:liquid_sap_acacia_bottle';
};
Purity = {
color = {244,255,255}; qual = 'purity';
apply = inc('purity');
describe = function(potion)
return 'good', 'purified', 'This potion\'s impurities and undesirable qualities are diminished or eliminated'
end;
infusion = 'sorcery:oil_purifying';
};
Beauty = {
color = {255,20,226}; qual = 'beauty';
apply = inc('beauty');
describe = function(potion)
|