Differences From Artifact [8dde1ca421]:
- File recipes.lua — part of check-in [01f4ba8ddc] at 2021-06-28 15:38:59 on branch trunk — more work on kegs and liquid, add taps and troughs for tapping trees and obtaining sap, add tree lore, add infuser module system, various tweaks, fix up bugged itemclass logic, add scaffold for crafting extension mechanism (user: lexi, size: 21722) [annotate] [blame] [check-ins using]
To Artifact [993e34739f]:
- File recipes.lua — part of check-in [b24c5f49c7] at 2021-07-05 03:07:21 on branch trunk — bug fixes, add spellshatter visuals, maybe finally defuckulate imbuement effect? (user: lexi, size: 21765) [annotate] [blame] [check-ins using]
254 254 end 255 255 256 256 minetest.register_craftitem('sorcery:inferno_crystal', { 257 257 -- made with melding wand from ruby, lithium ingot, and gunpowder 258 258 -- under sign of the wyvern or the winged serpent 259 259 inventory_image = 'sorcery_inferno_crystal.png'; 260 260 description = 'Inferno Crystal'; 261 + groups = {sorcery_magical = 1, fuel = 1}; 261 262 _sorcery = { 262 263 material = { 263 264 gem = true; 264 265 sacrifice_value = 900; 265 266 }; 266 267 } 267 268 })