Compare commits

...

6 Commits

Author SHA1 Message Date
Bas cb6f60ef6e Merge pull request #7 from cheapie/master
Allow cooking honey into sugar
2017-04-02 20:27:03 +02:00
Carter Kolwey 4bc7b5ecbf Allow cooking honey into sugar 2017-04-01 00:44:43 -05:00
Bas 47e0562bd2 Merge pull request #6 from VanessaE/master
tile_images --> tiles
2017-03-04 11:05:08 +01:00
Vanessa Ezekowitz 2bdd9a9ed1 tile_images --> tiles 2015-10-23 14:04:29 -04:00
Bas 28e1312d42 Merge pull request #5 from myoung008/master
Added recipe for industrial beehive
2015-09-29 10:17:59 +02:00
Marc Young 557c9110f9 Added recipe for industrial beehive 2015-09-27 12:23:20 -06:00
1 changed files with 18 additions and 1 deletions

View File

@ -177,7 +177,7 @@
minetest.register_node('bees:hive_wild', {
description = 'wild bee hive',
tile_images = {'bees_hive_wild.png','bees_hive_wild.png','bees_hive_wild.png', 'bees_hive_wild.png', 'bees_hive_wild_bottom.png'}, --Neuromancer's base texture
tiles = {'bees_hive_wild.png','bees_hive_wild.png','bees_hive_wild.png', 'bees_hive_wild.png', 'bees_hive_wild_bottom.png'}, --Neuromancer's base texture
drawtype = 'nodebox',
paramtype = 'light',
paramtype2 = 'wallmounted',
@ -567,6 +567,15 @@
}
})
if minetest.get_modpath('bushes_classic') then
minetest.register_craft({
type = 'cooking',
cooktime = 5,
recipe = 'bees:bottle_honey',
output = 'bushes:sugar',
})
end
--TOOLS
minetest.register_tool('bees:smoker', {
description = 'smoker',
@ -791,6 +800,14 @@
return 0
end,
})
minetest.register_craft({
output = 'bees:hive_industrial',
recipe = {
{'default:steel_ingot','homedecor:plastic_sheeting','default:steel_ingot'},
{'pipeworks:tube_1','bees:hive_artificial','pipeworks:tube_1'},
{'default:steel_ingot','homedecor:plastic_sheeting','default:steel_ingot'},
}
})
end
print('[Mod]Bees Loaded!')