sorcery  astrolabe.lua at [3f6a913e4e]

File astrolabe.lua artifact 6f8619640d part of check-in 3f6a913e4e


local albox = {
	type = 'fixed';
	fixed = {
		-0.43,-0.5,-0.43;
		 0.43, 0.3, 0.43;
	};
}
minetest.register_node('sorcery:astrolabe',{
	description = 'Astrolabe';
	drawtype = 'mesh';
	mesh = 'sorcery-astrolabe.obj';
	groups = {
		cracky = 2, choppy = 2;
		oddly_breakable_by_hand = 2;
		sorcery_tech = 1;
	};
	selection_box = albox, collision_box = albox;
	after_dig_node = sorcery.lib.node.purge_containers;
	tiles = {
		'default_steel_block.png';
		'default_bronze_block.png';
		'default_copper_block.png';
		'default_aspen_wood.png';
	};
	_sorcery = {
		recipe = {
			note = 'Unravel the secrets of the stars';
		};
	};
})