Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- minetest.register_tool("default:kitana_sword", {
- description = "Kitana Sword",
- inventory_image = "default_tool_kitanasword.png",
- tool_capabilities = {
- full_punch_interval = 0.3,
- max_drop_level=1,
- groupcaps={
- snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3},
- },
- damage_groups = {fleshy=15},
- },
- sound = {breaks = "default_tool_breaks"},
- })
- minetest.register_craft({
- output = 'default:kitana_sword',
- recipe = {
- {'moreores:mithril_ingot'},
- {'default:sword_diamond'},
- {'default:silver_ingot'},
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment