sorcery  Diff

Differences From Artifact [27d6ea2995]:

To Artifact [a23f444ae8]:


     3      3   		drawtype = 'airlike';
     4      4   		light_source = 5 + math.ceil(i * (11/minetest.LIGHT_MAX));
     5      5   		sunlight_propagates = true;
     6      6   		buildable_to = true;
     7      7   		pointable = false;
     8      8   		walkable = false;
     9      9   		floodable = true;
           10  +		groups = { air = 1; sorcery_air = 1; };
    10     11   		on_construct = function(pos)
    11     12   			local meta = minetest.get_meta(pos)
    12     13   			meta:set_float('duration',10)
    13     14   			meta:set_float('timeleft',10)
    14     15   			meta:set_int('power',minetest.LIGHT_MAX)
    15     16   			minetest.get_node_timer(pos):start(1)
    16     17   		end;