@@ -42,7 +42,8 @@ minetest.register_item(":", {
42
42
43
43
-- Mese Pickaxe: special tool that digs "everything" instantly
44
44
minetest .register_tool (" basetools:pick_mese" , {
45
- description = " Mese Pickaxe" ,
45
+ description = " Mese Pickaxe" .. " \n " ..
46
+ " Digs diggable nodes instantly" ,
46
47
inventory_image = " basetools_mesepick.png" ,
47
48
tool_capabilities = {
48
49
full_punch_interval = 1.0 ,
@@ -65,7 +66,9 @@ minetest.register_tool("basetools:pick_mese", {
65
66
66
67
-- This should break after only 1 use
67
68
minetest .register_tool (" basetools:pick_dirt" , {
68
- description = " Dirt Pickaxe" ,
69
+ description = " Dirt Pickaxe" .. " \n " ..
70
+ " Digs cracky=3" .. " \n " ..
71
+ " 1 use only" ,
69
72
inventory_image = " basetools_dirtpick.png" ,
70
73
tool_capabilities = {
71
74
max_drop_level = 0 ,
@@ -76,7 +79,8 @@ minetest.register_tool("basetools:pick_dirt", {
76
79
})
77
80
78
81
minetest .register_tool (" basetools:pick_wood" , {
79
- description = " Wooden Pickaxe" ,
82
+ description = " Wooden Pickaxe" .. " \n " ..
83
+ " Digs cracky=3" ,
80
84
inventory_image = " basetools_woodpick.png" ,
81
85
tool_capabilities = {
82
86
max_drop_level = 0 ,
@@ -86,7 +90,8 @@ minetest.register_tool("basetools:pick_wood", {
86
90
},
87
91
})
88
92
minetest .register_tool (" basetools:pick_stone" , {
89
- description = " Stone Pickaxe" ,
93
+ description = " Stone Pickaxe" .. " \n " ..
94
+ " Digs cracky=2..3" ,
90
95
inventory_image = " basetools_stonepick.png" ,
91
96
tool_capabilities = {
92
97
max_drop_level = 0 ,
@@ -96,7 +101,8 @@ minetest.register_tool("basetools:pick_stone", {
96
101
},
97
102
})
98
103
minetest .register_tool (" basetools:pick_steel" , {
99
- description = " Steel Pickaxe" ,
104
+ description = " Steel Pickaxe" .. " \n " ..
105
+ " Digs cracky=1..3" ,
100
106
inventory_image = " basetools_steelpick.png" ,
101
107
tool_capabilities = {
102
108
max_drop_level = 1 ,
@@ -106,7 +112,9 @@ minetest.register_tool("basetools:pick_steel", {
106
112
},
107
113
})
108
114
minetest .register_tool (" basetools:pick_steel_l1" , {
109
- description = " Steel Pickaxe Level 1" ,
115
+ description = " Steel Pickaxe Level 1" .. " \n " ..
116
+ " Digs cracky=1..3" .. " \n " ..
117
+ " maxlevel=1" ,
110
118
inventory_image = " basetools_steelpick_l1.png" ,
111
119
tool_capabilities = {
112
120
max_drop_level = 1 ,
@@ -116,7 +124,9 @@ minetest.register_tool("basetools:pick_steel_l1", {
116
124
},
117
125
})
118
126
minetest .register_tool (" basetools:pick_steel_l2" , {
119
- description = " Steel Pickaxe Level 2" ,
127
+ description = " Steel Pickaxe Level 2" .. " \n " ..
128
+ " Digs cracky=1..3" .. " \n " ..
129
+ " maxlevel=2" ,
120
130
inventory_image = " basetools_steelpick_l2.png" ,
121
131
tool_capabilities = {
122
132
max_drop_level = 1 ,
@@ -131,7 +141,8 @@ minetest.register_tool("basetools:pick_steel_l2", {
131
141
--
132
142
133
143
minetest .register_tool (" basetools:shovel_wood" , {
134
- description = " Wooden Shovel" ,
144
+ description = " Wooden Shovel" .. " \n " ..
145
+ " Digs crumbly=3" ,
135
146
inventory_image = " basetools_woodshovel.png" ,
136
147
tool_capabilities = {
137
148
max_drop_level = 0 ,
@@ -141,7 +152,8 @@ minetest.register_tool("basetools:shovel_wood", {
141
152
},
142
153
})
143
154
minetest .register_tool (" basetools:shovel_stone" , {
144
- description = " Stone Shovel" ,
155
+ description = " Stone Shovel" .. " \n " ..
156
+ " Digs crumbly=2..3" ,
145
157
inventory_image = " basetools_stoneshovel.png" ,
146
158
tool_capabilities = {
147
159
max_drop_level = 0 ,
@@ -151,7 +163,8 @@ minetest.register_tool("basetools:shovel_stone", {
151
163
},
152
164
})
153
165
minetest .register_tool (" basetools:shovel_steel" , {
154
- description = " Steel Shovel" ,
166
+ description = " Steel Shovel" .. " \n " ..
167
+ " Digs crumbly=1..3" ,
155
168
inventory_image = " basetools_steelshovel.png" ,
156
169
tool_capabilities = {
157
170
max_drop_level = 1 ,
@@ -166,7 +179,8 @@ minetest.register_tool("basetools:shovel_steel", {
166
179
--
167
180
168
181
minetest .register_tool (" basetools:axe_wood" , {
169
- description = " Wooden Axe" ,
182
+ description = " Wooden Axe" .. " \n " ..
183
+ " Digs choppy=3" ,
170
184
inventory_image = " basetools_woodaxe.png" ,
171
185
tool_capabilities = {
172
186
max_drop_level = 0 ,
@@ -176,7 +190,8 @@ minetest.register_tool("basetools:axe_wood", {
176
190
},
177
191
})
178
192
minetest .register_tool (" basetools:axe_stone" , {
179
- description = " Stone Axe" ,
193
+ description = " Stone Axe" .. " \n " ..
194
+ " Digs choppy=2..3" ,
180
195
inventory_image = " basetools_stoneaxe.png" ,
181
196
tool_capabilities = {
182
197
max_drop_level = 0 ,
@@ -186,7 +201,8 @@ minetest.register_tool("basetools:axe_stone", {
186
201
},
187
202
})
188
203
minetest .register_tool (" basetools:axe_steel" , {
189
- description = " Steel Axe" ,
204
+ description = " Steel Axe" .. " \n " ..
205
+ " Digs choppy=1..3" ,
190
206
inventory_image = " basetools_steelaxe.png" ,
191
207
tool_capabilities = {
192
208
max_drop_level = 1 ,
@@ -201,7 +217,8 @@ minetest.register_tool("basetools:axe_steel", {
201
217
--
202
218
203
219
minetest .register_tool (" basetools:shears_wood" , {
204
- description = " Wooden Shears" ,
220
+ description = " Wooden Shears" .. " \n " ..
221
+ " Digs snappy=3" ,
205
222
inventory_image = " basetools_woodshears.png" ,
206
223
tool_capabilities = {
207
224
max_drop_level = 0 ,
@@ -211,7 +228,8 @@ minetest.register_tool("basetools:shears_wood", {
211
228
},
212
229
})
213
230
minetest .register_tool (" basetools:shears_stone" , {
214
- description = " Stone Shears" ,
231
+ description = " Stone Shears" .. " \n " ..
232
+ " Digs snappy=2..3" ,
215
233
inventory_image = " basetools_stoneshears.png" ,
216
234
tool_capabilities = {
217
235
max_drop_level = 0 ,
@@ -221,7 +239,8 @@ minetest.register_tool("basetools:shears_stone", {
221
239
},
222
240
})
223
241
minetest .register_tool (" basetools:shears_steel" , {
224
- description = " Steel Shears" ,
242
+ description = " Steel Shears" .. " \n " ..
243
+ " Digs snappy=1..3" ,
225
244
inventory_image = " basetools_steelshears.png" ,
226
245
tool_capabilities = {
227
246
max_drop_level = 1 ,
@@ -236,15 +255,17 @@ minetest.register_tool("basetools:shears_steel", {
236
255
--
237
256
238
257
minetest .register_tool (" basetools:sword_wood" , {
239
- description = " Wooden Sword" ,
258
+ description = " Wooden Sword" .. " \n " ..
259
+ " Damage: fleshy=2" ,
240
260
inventory_image = " basetools_woodsword.png" ,
241
261
tool_capabilities = {
242
262
full_punch_interval = 1.0 ,
243
263
damage_groups = {fleshy = 2 },
244
264
}
245
265
})
246
266
minetest .register_tool (" basetools:sword_stone" , {
247
- description = " Stone Sword" ,
267
+ description = " Stone Sword" .. " \n " ..
268
+ " Damage: fleshy=4" ,
248
269
inventory_image = " basetools_stonesword.png" ,
249
270
tool_capabilities = {
250
271
full_punch_interval = 1.0 ,
@@ -253,7 +274,8 @@ minetest.register_tool("basetools:sword_stone", {
253
274
}
254
275
})
255
276
minetest .register_tool (" basetools:sword_steel" , {
256
- description = " Steel Sword" ,
277
+ description = " Steel Sword" .. " \n " ..
278
+ " Damage: fleshy=6" ,
257
279
inventory_image = " basetools_steelsword.png" ,
258
280
tool_capabilities = {
259
281
full_punch_interval = 1.0 ,
@@ -264,7 +286,8 @@ minetest.register_tool("basetools:sword_steel", {
264
286
265
287
-- Fire/Ice sword: Deal damage to non-fleshy damage groups
266
288
minetest .register_tool (" basetools:sword_fire" , {
267
- description = " Fire Sword" ,
289
+ description = " Fire Sword" .. " \n " ..
290
+ " Damage: icy=6" ,
268
291
inventory_image = " basetools_firesword.png" ,
269
292
tool_capabilities = {
270
293
full_punch_interval = 1.0 ,
@@ -273,20 +296,23 @@ minetest.register_tool("basetools:sword_fire", {
273
296
}
274
297
})
275
298
minetest .register_tool (" basetools:sword_ice" , {
276
- description = " Ice Sword" ,
299
+ description = " Ice Sword" .. " \n " ..
300
+ " Damage: fiery=6" ,
277
301
inventory_image = " basetools_icesword.png" ,
278
302
tool_capabilities = {
279
303
full_punch_interval = 1.0 ,
280
304
max_drop_level = 0 ,
281
- damage_groups = {firy = 6 },
305
+ damage_groups = {fiery = 6 },
282
306
}
283
307
})
284
308
285
309
--
286
310
-- Dagger: Low damage, fast punch interval
287
311
--
288
312
minetest .register_tool (" basetools:dagger_steel" , {
289
- description = " Steel Dagger" ,
313
+ description = " Steel Dagger" .. " \n " ..
314
+ " Damage: fleshy=2" .. " \n " ..
315
+ " Full Punch Interval: 0.5s" ,
290
316
inventory_image = " basetools_steeldagger.png" ,
291
317
tool_capabilities = {
292
318
full_punch_interval = 0.5 ,
0 commit comments