@@ -35,8 +35,17 @@ obsidian = { item = 'default:obsidian_shard'; sturdiness = 1.5; }; + diamond = { + item = 'sorcery:shard_diamond'; + sturdiness = 1.7; + reliability = 0.75; + }; + mese = { + item = 'default:mese_fragment'; + generate = 2; + }; cobalt = { item = 'sorcery:powder_cobalt'; power = 1.4; }; @@ -371,8 +380,14 @@ -- luv 2 defensive coding minetest.add_item(pos, stack) end end; + groups = { + not_in_creative_inventory = 1; + sorcery_wand_stand = 1; + choppy = 2; + oddly_breakable_by_hand = 2; + }; on_rightclick = function(pos,node,user,stack) local meta = minetest.get_meta(pos) local stand = meta:get_inventory() local wand = stand:get_stack('wand',1) @@ -701,8 +716,9 @@ local base = { description = "Wandworking Station"; groups = { choppy = 2; + not_in_creative_inventory = water and 1 or nil; }; paramtype2 = 'facedir'; on_construct = function(pos) local meta = minetest.get_meta(pos)