795
796
797
798
799
800
801
802
803
804
805
806
807
808
|
minetest.register_craft {
output = dye .. ' 4';
recipe = {
{'', pd[2], ''};
{pd[1],'basic_materials:paraffin', pd[3]};
{'', 'bucket:bucket_water', ''};
};
}
end
end
local potion_auto_recipe = function(id, substance, tools, container)
local recipe = tools
local replace = {}
|
|
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
|
minetest.register_craft {
output = dye .. ' 4';
recipe = {
{'', pd[2], ''};
{pd[1],'basic_materials:paraffin', pd[3]};
{'', 'bucket:bucket_water', ''};
};
replacements = {
{'bucket:bucket_water', 'bucket:bucket_empty'};
};
}
end
end
local potion_auto_recipe = function(id, substance, tools, container)
local recipe = tools
local replace = {}
|