281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
...
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
};
dowse = {
name = 'dowsing';
leytype = 'cognic';
color = {65,116,255};
affinity = {'acacia','dark','silent'};
uses = 176;
desc = 'Send up sparks of radia to indicate nearness or absence of attuned blocks';
};
verdant = {
name = 'verdant';
color = {16,29,255};
uses = 48;
leytype = 'imperic';
desc = 'Pour life-energy into the soil, causing flowers and trees to spring up at your command';
................................................................................
if rec then
local data = decpos(sorcery.lib.str.meta_dearmor(rec,true))
local srcpos = {x=data.x,y=data.y,z=data.z}
local srcnode = minetest.get_node(srcpos)
local srcdef = minetest.registered_nodes[srcnode.name]
if srcdef and srcdef._sorcery and srcdef._sorcery.attune then
if sorcery.attunement.nodeid(srcpos) == data.id then
-- check for ink
src = {
pos = srcpos;
props = srcdef._sorcery.attune;
}
end
end
end
|
|
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
...
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
};
dowse = {
name = 'dowsing';
leytype = 'cognic';
color = {65,116,255};
affinity = {'acacia','dark','silent'};
uses = 176;
desc = 'Send up sparks of radia to indicate nearness or absence of the blocks whose presence the wand is attuned to';
};
verdant = {
name = 'verdant';
color = {16,29,255};
uses = 48;
leytype = 'imperic';
desc = 'Pour life-energy into the soil, causing flowers and trees to spring up at your command';
................................................................................
if rec then
local data = decpos(sorcery.lib.str.meta_dearmor(rec,true))
local srcpos = {x=data.x,y=data.y,z=data.z}
local srcnode = minetest.get_node(srcpos)
local srcdef = minetest.registered_nodes[srcnode.name]
if srcdef and srcdef._sorcery and srcdef._sorcery.attune then
if sorcery.attunement.nodeid(srcpos) == data.id then
src = {
pos = srcpos;
props = srcdef._sorcery.attune;
}
end
end
end
|