sorcery  Diff

Differences From Artifact [1f5f95dd4b]:

To Artifact [4064266f0d]:


     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  +		drop = {max_items = 0, items = {}};
           11  +		on_blast = function() end; -- not affected by explosions
    10     12   		groups = { air = 1; sorcery_air = 1; not_in_creative_inventory = 1; };
    11     13   		on_construct = function(pos)
    12     14   			local meta = minetest.get_meta(pos)
    13     15   			meta:set_float('duration',10)
    14     16   			meta:set_float('timeleft',10)
    15     17   			meta:set_int('power',minetest.LIGHT_MAX)
    16     18   			minetest.get_node_timer(pos):start(1)