123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- -- Config file for tunneltest
- return( {
- --settings for the hud
- hud = {
- pos = { x=0, y=0},
- x_offset = 38,
- y_offset = 38,
- scale = { x=2, y=2 },
- alignment = { x=.5, y=.5},
- },
- --all tools are generated from this list
- tunneler_types = {
- bronze_tunneler ={
- --toolspec, right click actions, and stack limit added automatically
- toolspec = {
- description = "Bronze Tunneler",
- inventory_image = "tunneler_handle16.png^tunneler_bronze.png",
- wield_scale = {x=1.5,y=1.5,z=1},
- tool_capabilities = {
- max_drop_level=1,
- full_punch_interval = 10,
- groupcaps= {
- cracky = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=20, maxlevel=2},
- crumbly = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=20, maxlevel=2}
- }
- },
- _repair_material = "default:bronzeblock",
- --maximal area of effect
- _N = 3,
- _M = 3
- },
- --recipe for crafting
- recipe = {
- { "default:bronzeblock", "default:bronzeblock", "default:bronzeblock" },
- { "default:bronzeblock", "darkage:iron_stick", "" },
- { "", "darkage:iron_stick", "" }
- },
- },
- diamond_tunneler ={
- toolspec = {
- description = "Diamond Tunneler",
- inventory_image = "tunneler_handle16.png^tunneler_diamond.png",
- wield_scale = {x=2,y=2,z=1},
- tool_capabilities = {
- max_drop_level=2,
- full_punch_interval = 10,
- groupcaps= {
- cracky = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=50, maxlevel=2},
- crumbly = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=50, maxlevel=2}
- }
- },
- _repair_material = "default:diamondblock",
- _N = 5,
- _M = 5
- },
- recipe = {
- { "default:diamondblock", "default:diamondblock", "default:diamondblock" },
- { "default:diamondblock", "darkage:iron_stick", "" },
- { "", "darkage:iron_stick", "" }
- },
- },
- titanium_tunneler ={
- toolspec = {
- description = "Titanium Tunneler",
- inventory_image = "tunneler_handle16.png^tunneler_titanium.png",
- wield_scale = {x=2.5,y=2.5,z=1},
- tool_capabilities = {
- max_drop_level=3,
- full_punch_interval = 10,
- groupcaps= {
- cracky = {times={[1]=4.00, [2]=2.0, [3]=1.0}, uses=100, maxlevel=4},
- crumbly = {times={[1]=4.00, [2]=2.0, [3]=1.0}, uses=100, maxlevel=4}
- }
- },
- _repair_material = "default:titanium_block",
- _N = 7,
- _M = 9
- },
- recipe = {
- { "epic:titanium_block", "epic:titanium_block", "epic:titanium_block" },
- { "epic:titanium_block", "darkage:iron_stick", "" },
- { "", "darkage:iron_stick", "" }
- },
- },
- }
- } )
|