deal with it

This commit is contained in:
Jordach 2014-08-26 15:33:05 +01:00
parent 6cf8c06b12
commit bc9fa1b8b5
24 changed files with 98 additions and 5 deletions

View File

@ -34,3 +34,5 @@ If a feature is just a normal minetest_game based mod, then make a pull request,
If a .lua file is being worked on lots, you'll know that it will be finished by the end of the day.
Keep in mind that pull requests may get ignored as mail is not often checked.
If you create a pull that happens to modify huge amounts of core code by using this as an example, http://dev.minetest.net/Lua_code_style_guidelines that PULL REQUEST WILL BE CLOSED AND NOT MERGED.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -423,6 +423,101 @@ minetest.register_craft({
}
})
-- steel super tools
minetest.register_tool("tools:steel_hammer", {
description = "Steel Dighammer",
groups = {sledge=1},
inventory_image = "tools_steel_hammer.png",
tool_capabilities = {
full_punch_interval = 4.1,
max_drop_level=0,
groupcaps={
cracky = {times={[1]=3.7*2.5, [2]=3.7*2.5, [3]=1.7*2.5}, uses=34, maxlevel=1},
},
damage_groups = {fleshy=4},
},
})
minetest.register_craft({
output = "tools:steel_hammer",
recipe = {
{"tools:steel_ingot", "tools:steel_ingot","tools:steel_ingot"},
{"tools:steel_ingot", "tools:steel_ingot","tools:steel_ingot"},
{"", "tools:stick",""}
}
})
minetest.register_tool("tools:steel_sickle", {
description = "Steel Sickle",
groups = {lumberaxe=1},
inventory_image = "tools_steel_sickle.png",
tool_capabilities = {
full_punch_interval = 2.34,
max_drop_level=0,
groupcaps = {
snappy = {times={[1]=0.6, [2]=0.3, [3]=0.15}, uses = 36, maxlevel=1},
},
damage_groups = {fleshy=6},
},
})
minetest.register_craft({
output = "tools:steel_sickle",
recipe = {
{'tools:steel_ingot', 'tools:steel_ingot', 'tools:steel_ingot'},
{'tools:steel_ingot', '', 'tools:steel_ingot'},
{'', '', 'tools:stick'},
}
})
minetest.register_tool("tools:steel_battleaxe", {
description = "Steel Battle Axe",
inventory_image = "tools_steel_battleaxe.png",
tool_capabilities = {
full_punch_interval = 2.05*2,
max_drop_level = 0,
groupcaps = {
choppy = {times={[1]=9.8*1.5, [2]=4.2*1.5, [3]=3.1*1.5}, uses = 42*2, maxlevel=1},
},
damage_groups = {fleshy=9},
},
})
minetest.register_craft({
output = 'tools:steel_battleaxe',
recipe = {
{'tools:axe_steel', 'farming:string', 'tools:axe_steel'},
{'', 'tools:stick', ''},
}
})
minetest.register_tool("tools:steel_dirt_mover", {
description = "Steel Dirt Mover",
groups = {sledge=1},
inventory_image = "tools_steel_dirt_mover.png",
tool_capabilities = {
full_punch_interval = 2.55,
max_drop_level = 0,
groupcaps = {
crumbly = {times={[1]=4.1, [2]=2.55, [3]=1.75}, uses = 40, maxlevel=1},
},
damage_groups = {fleshy=3},
},
})
minetest.register_craft({
output = "tools:steel_dirt_mover",
recipe = {
{'tools:steel_ingot', 'tools:steel_ingot', 'tools:steel_ingot'},
{'tools:steel_ingot', 'tools:stick', 'tools:steel_ingot'},
{'', 'tools:stick', ''},
}
})
-- tin tools
minetest.register_tool("tools:pick_tin", {
@ -609,7 +704,7 @@ minetest.register_craft({
}
})
-- steel extra tools
-- bronze extra tools
minetest.register_tool("tools:steel_hammer", {
description = "Steel Dighammer",
@ -635,7 +730,6 @@ minetest.register_craft({
}
})
-- steel sickle
minetest.register_tool("tools:steel_sickle", {
description = "Steel Sickle",
@ -660,7 +754,6 @@ minetest.register_craft({
}
})
-- steel battleaxe
minetest.register_tool("tools:steel_battleaxe", {
description = "Steel Battle Axe",
@ -683,8 +776,6 @@ minetest.register_craft({
}
})
-- dirt mover
minetest.register_tool("tools:steel_dirt_mover", {
description = "Steel Dirt Mover",
groups = {sledge=1},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B