Differences From Artifact [bac74a37c3]:
- File enchanter.lua — part of check-in [96c5289a2a] at 2020-10-21 03:35:35 on branch trunk — add rune forges, runes, amulet frames, write sacrifice spell, touch up amulet graphics, enable enchantment of amulets (though spells cannot yet be cast), defuckulate syncresis core icon, unfuckitize sneaky leycalc bug that's probably been the cause of some long-standing wackiness, add item classes, add some more textures, disbungle various other asstastrophes, remove sneaky old debug code, improve library code, add utility for uploading merge requests (user: lexi, size: 16060) [annotate] [blame] [check-ins using]
To Artifact [b41a4d81d6]:
- File enchanter.lua — part of check-in [83426a2748] at 2020-10-22 15:51:39 on branch trunk — balance amulets better, add sound effects, add debugging privilege for runes, swat various glitches and bugs (user: lexi, size: 16157) [annotate] [blame] [check-ins using]
311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
buildable_to = true; sunlight_propagates = true; light_source = i + 4; groups = { air = 1, sorcery_air = 1; not_in_creative_inventory = 1; }; on_construct = function(pos) minetest.get_node_timer(pos):start(0.05) end; on_timer = function(pos) if i <= 2 then minetest.remove_node(pos) else minetest.set_node(pos, {name='sorcery:air_flash_1'}) return true |
> > |
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
buildable_to = true; sunlight_propagates = true; light_source = i + 4; groups = { air = 1, sorcery_air = 1; not_in_creative_inventory = 1; }; drop = {max_items = 0, items = {}}; on_blast = function() end; -- not affected by explosions on_construct = function(pos) minetest.get_node_timer(pos):start(0.05) end; on_timer = function(pos) if i <= 2 then minetest.remove_node(pos) else minetest.set_node(pos, {name='sorcery:air_flash_1'}) return true |