tunneltest.conf 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. -- Config file for tunneltest
  2. return( {
  3. --settings for the hud
  4. hud = {
  5. pos = { x=0, y=0},
  6. x_offset = 38,
  7. y_offset = 38,
  8. scale = { x=2, y=2 },
  9. alignment = { x=.5, y=.5},
  10. },
  11. --all tools are generated from this list
  12. tunneler_types = {
  13. bronze_tunneler ={
  14. --toolspec, right click actions, and stack limit added automatically
  15. toolspec = {
  16. description = "Bronze Tunneler",
  17. inventory_image = "tunneler_handle16.png^tunneler_bronze.png",
  18. wield_scale = {x=1.5,y=1.5,z=1},
  19. tool_capabilities = {
  20. max_drop_level=1,
  21. full_punch_interval = 10,
  22. groupcaps= {
  23. cracky = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=20, maxlevel=2},
  24. crumbly = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=20, maxlevel=2}
  25. }
  26. },
  27. _repair_material = "default:bronzeblock",
  28. --maximal area of effect
  29. _N = 3,
  30. _M = 3
  31. },
  32. --recipe for crafting
  33. recipe = {
  34. { "default:bronzeblock", "default:bronzeblock", "default:bronzeblock" },
  35. { "default:bronzeblock", "darkage:iron_stick", "" },
  36. { "", "darkage:iron_stick", "" }
  37. },
  38. },
  39. diamond_tunneler ={
  40. toolspec = {
  41. description = "Diamond Tunneler",
  42. inventory_image = "tunneler_handle16.png^tunneler_diamond.png",
  43. wield_scale = {x=2,y=2,z=1},
  44. tool_capabilities = {
  45. max_drop_level=2,
  46. full_punch_interval = 10,
  47. groupcaps= {
  48. cracky = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=50, maxlevel=2},
  49. crumbly = {times={[1]=3.00, [2]=1.60, [3]=0.60}, uses=50, maxlevel=2}
  50. }
  51. },
  52. _repair_material = "default:diamondblock",
  53. _N = 5,
  54. _M = 5
  55. },
  56. recipe = {
  57. { "default:diamondblock", "default:diamondblock", "default:diamondblock" },
  58. { "default:diamondblock", "darkage:iron_stick", "" },
  59. { "", "darkage:iron_stick", "" }
  60. },
  61. },
  62. titanium_tunneler ={
  63. toolspec = {
  64. description = "Titanium Tunneler",
  65. inventory_image = "tunneler_handle16.png^tunneler_titanium.png",
  66. wield_scale = {x=2.5,y=2.5,z=1},
  67. tool_capabilities = {
  68. max_drop_level=3,
  69. full_punch_interval = 10,
  70. groupcaps= {
  71. cracky = {times={[1]=4.00, [2]=2.0, [3]=1.0}, uses=100, maxlevel=4},
  72. crumbly = {times={[1]=4.00, [2]=2.0, [3]=1.0}, uses=100, maxlevel=4}
  73. }
  74. },
  75. _repair_material = "default:titanium_block",
  76. _N = 7,
  77. _M = 9
  78. },
  79. recipe = {
  80. { "epic:titanium_block", "epic:titanium_block", "epic:titanium_block" },
  81. { "epic:titanium_block", "darkage:iron_stick", "" },
  82. { "", "darkage:iron_stick", "" }
  83. },
  84. },
  85. }
  86. } )