Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Register tools, tool attributes
- minetest.register_tool("hatchet:mese", {
- description = "Mese Hatchet",
- image = "mese_hatchet.png",
- tool_digging_properties = {
- basetime = 1.0,
- dt_weight = 4,
- dt_crackiness = -0.2,
- dt_crumbliness = 1,
- dt_cuttability = -0.1,
- basedurability = 1337,
- dd_weight = 0,
- dd_crackiness = 0,
- dd_crumbliness = 0,
- dd_cuttability = 0,
- },
- })
- minetest.register_tool("hatchet:steel", {
- description = "Steel Hatchet",
- image = "steel_hatchet.png",
- tool_digging_properties = {
- basetime = 1.0,
- dt_weight = 3,
- dt_crackiness = -0.2,
- dt_crumbliness = 1,
- dt_cuttability = -0.5,
- basedurability = 1337,
- dd_weight = 0,
- dd_crackiness = 0,
- dd_crumbliness = 0,
- dd_cuttability = 0,
- },
- })
- -- Tool recipies
- minetest.register_craft({
- output = 'tool "hatchet:mese"',
- recipe = {
- {'default:mese', 'default:mese'},
- {'default:mese', 'default:mese'},
- {'', 'default:stick'},
- }
- })
- minetest.register_craft({
- output = 'tool "hatchet:steel"',
- recipe = {
- {'default:steel_ingot', 'default:steel_ingot'},
- {'default:steel_ingot', 'default:steel_ingot'},
- {'', 'default:stick'},
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment