Differences From Artifact [57d631c78f]:
- File metal.lua — part of check-in [ea6e475e44] at 2020-10-19 09:52:11 on branch trunk — continue dev on celestial mechanics, add melding+division spells (resonance), refine itemclasses, add keypunch and punchcards, add paper pulp, add a shitload of visuals, add convenience scripts for working with the wiki, make the flamebolt spell actually useful instead of just a pretty lightshow, add essences, inferno crystal, and other goodies; iterate on wands, lots of shit i can't remember, various bugfixes (user: lexi, size: 6622) [annotate] [blame] [check-ins using]
To Artifact [a37b19ab11]:
- File metal.lua — part of check-in [4a3678503f] at 2020-10-19 22:42:47 on branch trunk — add wand rack, rework wand power mechanics, add missing texture, swat some bugs, insert hack to neuter unkillable fucking impossibug in portal code (user: lexi, size: 6627) [annotate] [blame] [check-ins using]
222 223 224 225 226 227 228 229 230 231 232 233 234 |
repl[#repl+1] = {m, sorcery.register.residue.db[m]}
end
end
end
minetest.register_craft {
type = 'shapeless';
output = powder .. ' ' .. tostring(#powders);
recipe = powders;
replacements = repl;
};
end
end)
|
| |
222 223 224 225 226 227 228 229 230 231 232 233 234 |
repl[#repl+1] = {m, sorcery.register.residue.db[m]}
end
end
end
minetest.register_craft {
type = 'shapeless';
output = powder .. ' ' .. tostring(#metal.sinter);
recipe = powders;
replacements = repl;
};
end
end)
|