init.lua 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  1. tnt = {}
  2. -- Default to enabled when in singleplayer
  3. local enable_tnt = minetest.settings:get_bool("enable_tnt")
  4. if enable_tnt == nil then
  5. enable_tnt = minetest.is_singleplayer()
  6. end
  7. -- loss probabilities array (one in X will be lost)
  8. local loss_prob = {}
  9. loss_prob["default:cobble"] = 3
  10. loss_prob["default:dirt"] = 4
  11. local tnt_radius = tonumber(minetest.settings:get("tnt_radius") or 3)
  12. -- Fill a list with data for content IDs, after all nodes are registered
  13. local cid_data = {}
  14. minetest.after(0, function()
  15. for name, def in pairs(minetest.registered_nodes) do
  16. cid_data[minetest.get_content_id(name)] = {
  17. name = name,
  18. drops = def.drops,
  19. flammable = def.groups.flammable,
  20. on_blast = def.on_blast,
  21. }
  22. end
  23. end)
  24. local function rand_pos(center, pos, radius)
  25. local def
  26. local reg_nodes = minetest.registered_nodes
  27. local i = 0
  28. repeat
  29. -- Give up and use the center if this takes too long
  30. if i > 4 then
  31. pos.x, pos.z = center.x, center.z
  32. break
  33. end
  34. pos.x = center.x + math.random(-radius, radius)
  35. pos.z = center.z + math.random(-radius, radius)
  36. def = reg_nodes[minetest.get_node(pos).name]
  37. i = i + 1
  38. until def and not def.walkable
  39. end
  40. local function eject_drops(drops, pos, radius)
  41. local drop_pos = vector.new(pos)
  42. for _, item in pairs(drops) do
  43. local count = math.min(item:get_count(), item:get_stack_max())
  44. while count > 0 do
  45. local take = math.max(1,math.min(radius * radius,
  46. count,
  47. item:get_stack_max()))
  48. rand_pos(pos, drop_pos, radius)
  49. local dropitem = ItemStack(item)
  50. dropitem:set_count(take)
  51. local obj = minetest.add_item(drop_pos, dropitem)
  52. if obj then
  53. obj:get_luaentity().collect = true
  54. obj:set_acceleration({x = 0, y = -10, z = 0})
  55. obj:set_velocity({x = math.random(-3, 3),
  56. y = math.random(0, 10),
  57. z = math.random(-3, 3)})
  58. end
  59. count = count - take
  60. end
  61. end
  62. end
  63. local function add_drop(drops, item)
  64. item = ItemStack(item)
  65. local name = item:get_name()
  66. if loss_prob[name] ~= nil and math.random(1, loss_prob[name]) == 1 then
  67. return
  68. end
  69. local drop = drops[name]
  70. if drop == nil then
  71. drops[name] = item
  72. else
  73. drop:set_count(drop:get_count() + item:get_count())
  74. end
  75. end
  76. local basic_flame_on_construct -- cached value
  77. local function destroy(drops, npos, cid, c_air, c_fire,
  78. on_blast_queue, on_construct_queue,
  79. ignore_protection, ignore_on_blast, owner)
  80. if not ignore_protection and minetest.is_protected(npos, owner) then
  81. return cid
  82. end
  83. local def = cid_data[cid]
  84. if not def then
  85. return c_air
  86. elseif not ignore_on_blast and def.on_blast then
  87. on_blast_queue[#on_blast_queue + 1] = {
  88. pos = vector.new(npos),
  89. on_blast = def.on_blast
  90. }
  91. return cid
  92. elseif def.flammable then
  93. on_construct_queue[#on_construct_queue + 1] = {
  94. fn = basic_flame_on_construct,
  95. pos = vector.new(npos)
  96. }
  97. return c_fire
  98. else
  99. local node_drops = minetest.get_node_drops(def.name, "")
  100. for _, item in pairs(node_drops) do
  101. add_drop(drops, item)
  102. end
  103. return c_air
  104. end
  105. end
  106. local function calc_velocity(pos1, pos2, old_vel, power)
  107. -- Avoid errors caused by a vector of zero length
  108. if vector.equals(pos1, pos2) then
  109. return old_vel
  110. end
  111. local vel = vector.direction(pos1, pos2)
  112. vel = vector.normalize(vel)
  113. vel = vector.multiply(vel, power)
  114. -- Divide by distance
  115. local dist = vector.distance(pos1, pos2)
  116. dist = math.max(dist, 1)
  117. vel = vector.divide(vel, dist)
  118. -- Add old velocity
  119. vel = vector.add(vel, old_vel)
  120. -- randomize it a bit
  121. vel = vector.add(vel, {
  122. x = math.random() - 0.5,
  123. y = math.random() - 0.5,
  124. z = math.random() - 0.5,
  125. })
  126. -- Limit to terminal velocity
  127. dist = vector.length(vel)
  128. if dist > 250 then
  129. vel = vector.divide(vel, dist / 250)
  130. end
  131. return vel
  132. end
  133. local function entity_physics(pos, radius, drops)
  134. local objs = minetest.get_objects_inside_radius(pos, radius)
  135. for _, obj in pairs(objs) do
  136. local obj_pos = obj:get_pos()
  137. local dist = math.max(1, vector.distance(pos, obj_pos))
  138. local damage = (4 / dist) * radius
  139. if obj:is_player() then
  140. -- currently the engine has no method to set
  141. -- player velocity. See #2960
  142. -- instead, we knock the player back 1.0 node, and slightly upwards
  143. local dir = vector.normalize(vector.subtract(obj_pos, pos))
  144. local moveoff = vector.multiply(dir, dist + 1.0)
  145. local newpos = vector.add(pos, moveoff)
  146. newpos = vector.add(newpos, {x = 0, y = 0.2, z = 0})
  147. obj:set_pos(newpos)
  148. obj:set_hp(obj:get_hp() - damage)
  149. else
  150. local do_damage = true
  151. local do_knockback = true
  152. local entity_drops = {}
  153. local luaobj = obj:get_luaentity()
  154. local objdef = minetest.registered_entities[luaobj.name]
  155. if objdef and objdef.on_blast then
  156. do_damage, do_knockback, entity_drops = objdef.on_blast(luaobj, damage)
  157. end
  158. if do_knockback then
  159. local obj_vel = obj:get_velocity()
  160. obj:set_velocity(calc_velocity(pos, obj_pos,
  161. obj_vel, radius * 10))
  162. end
  163. if do_damage then
  164. if not obj:get_armor_groups().immortal then
  165. obj:punch(obj, 1.0, {
  166. full_punch_interval = 1.0,
  167. damage_groups = {fleshy = damage},
  168. }, nil)
  169. end
  170. end
  171. for _, item in pairs(entity_drops) do
  172. add_drop(drops, item)
  173. end
  174. end
  175. end
  176. end
  177. local function add_effects(pos, radius, drops)
  178. minetest.add_particle({
  179. pos = pos,
  180. velocity = vector.new(),
  181. acceleration = vector.new(),
  182. expirationtime = 0.4,
  183. size = radius * 10,
  184. collisiondetection = false,
  185. vertical = false,
  186. texture = "tnt_boom.png",
  187. glow = 15,
  188. })
  189. minetest.add_particlespawner({
  190. amount = 64,
  191. time = 0.5,
  192. minpos = vector.subtract(pos, radius / 2),
  193. maxpos = vector.add(pos, radius / 2),
  194. minvel = {x = -10, y = -10, z = -10},
  195. maxvel = {x = 10, y = 10, z = 10},
  196. minacc = vector.new(),
  197. maxacc = vector.new(),
  198. minexptime = 1,
  199. maxexptime = 2.5,
  200. minsize = radius * 3,
  201. maxsize = radius * 5,
  202. texture = "tnt_smoke.png",
  203. })
  204. -- we just dropped some items. Look at the items entities and pick
  205. -- one of them to use as texture
  206. local texture = "tnt_blast.png" --fallback texture
  207. local most = 0
  208. for name, stack in pairs(drops) do
  209. local count = stack:get_count()
  210. if count > most then
  211. most = count
  212. local def = minetest.registered_nodes[name]
  213. if def and def.tiles and def.tiles[1] then
  214. texture = def.tiles[1]
  215. end
  216. end
  217. end
  218. minetest.add_particlespawner({
  219. amount = 64,
  220. time = 0.1,
  221. minpos = vector.subtract(pos, radius / 2),
  222. maxpos = vector.add(pos, radius / 2),
  223. minvel = {x = -3, y = 0, z = -3},
  224. maxvel = {x = 3, y = 5, z = 3},
  225. minacc = {x = 0, y = -10, z = 0},
  226. maxacc = {x = 0, y = -10, z = 0},
  227. minexptime = 0.8,
  228. maxexptime = 2.0,
  229. minsize = radius * 0.66,
  230. maxsize = radius * 2,
  231. texture = texture,
  232. collisiondetection = true,
  233. })
  234. end
  235. function tnt.burn(pos, nodename)
  236. local name = nodename or minetest.get_node(pos).name
  237. local def = minetest.registered_nodes[name]
  238. if not def then
  239. return
  240. elseif def.on_ignite then
  241. def.on_ignite(pos)
  242. elseif minetest.get_item_group(name, "tnt") > 0 then
  243. minetest.swap_node(pos, {name = name .. "_burning"})
  244. minetest.sound_play("tnt_ignite", {pos = pos})
  245. minetest.get_node_timer(pos):start(1)
  246. end
  247. end
  248. local function tnt_explode(pos, radius, ignore_protection, ignore_on_blast, owner, explode_center)
  249. pos = vector.round(pos)
  250. -- scan for adjacent TNT nodes first, and enlarge the explosion
  251. local vm1 = VoxelManip()
  252. local p1 = vector.subtract(pos, 2)
  253. local p2 = vector.add(pos, 2)
  254. local minp, maxp = vm1:read_from_map(p1, p2)
  255. local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp})
  256. local data = vm1:get_data()
  257. local count = 0
  258. local c_tnt = minetest.get_content_id("tnt:tnt")
  259. local c_tnt_burning = minetest.get_content_id("tnt:tnt_burning")
  260. local c_tnt_boom = minetest.get_content_id("tnt:boom")
  261. local c_air = minetest.get_content_id("air")
  262. -- make sure we still have explosion even when centre node isnt tnt related
  263. if explode_center then
  264. count = 1
  265. end
  266. for z = pos.z - 2, pos.z + 2 do
  267. for y = pos.y - 2, pos.y + 2 do
  268. local vi = a:index(pos.x - 2, y, z)
  269. for x = pos.x - 2, pos.x + 2 do
  270. local cid = data[vi]
  271. if cid == c_tnt or cid == c_tnt_boom or cid == c_tnt_burning then
  272. count = count + 1
  273. data[vi] = c_air
  274. end
  275. vi = vi + 1
  276. end
  277. end
  278. end
  279. vm1:set_data(data)
  280. vm1:write_to_map()
  281. -- recalculate new radius
  282. radius = math.floor(radius * math.pow(count, 1/3))
  283. -- perform the explosion
  284. local vm = VoxelManip()
  285. local pr = PseudoRandom(os.time())
  286. p1 = vector.subtract(pos, radius)
  287. p2 = vector.add(pos, radius)
  288. minp, maxp = vm:read_from_map(p1, p2)
  289. a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp})
  290. data = vm:get_data()
  291. local drops = {}
  292. local on_blast_queue = {}
  293. local on_construct_queue = {}
  294. basic_flame_on_construct = minetest.registered_nodes["fire:basic_flame"].on_construct
  295. local c_fire = minetest.get_content_id("fire:basic_flame")
  296. for z = -radius, radius do
  297. for y = -radius, radius do
  298. local vi = a:index(pos.x + (-radius), pos.y + y, pos.z + z)
  299. for x = -radius, radius do
  300. local r = vector.length(vector.new(x, y, z))
  301. if (radius * radius) / (r * r) >= (pr:next(80, 125) / 100) then
  302. local cid = data[vi]
  303. local p = {x = pos.x + x, y = pos.y + y, z = pos.z + z}
  304. if cid ~= c_air then
  305. data[vi] = destroy(drops, p, cid, c_air, c_fire,
  306. on_blast_queue, on_construct_queue,
  307. ignore_protection, ignore_on_blast, owner)
  308. end
  309. end
  310. vi = vi + 1
  311. end
  312. end
  313. end
  314. vm:set_data(data)
  315. vm:write_to_map()
  316. vm:update_map()
  317. vm:update_liquids()
  318. -- call check_single_for_falling for everything within 1.5x blast radius
  319. for y = -radius * 1.5, radius * 1.5 do
  320. for z = -radius * 1.5, radius * 1.5 do
  321. for x = -radius * 1.5, radius * 1.5 do
  322. local rad = {x = x, y = y, z = z}
  323. local s = vector.add(pos, rad)
  324. local r = vector.length(rad)
  325. if r / radius < 1.4 then
  326. minetest.check_single_for_falling(s)
  327. end
  328. end
  329. end
  330. end
  331. for _, queued_data in pairs(on_blast_queue) do
  332. local dist = math.max(1, vector.distance(queued_data.pos, pos))
  333. local intensity = (radius * radius) / (dist * dist)
  334. local node_drops = queued_data.on_blast(queued_data.pos, intensity)
  335. if node_drops then
  336. for _, item in pairs(node_drops) do
  337. add_drop(drops, item)
  338. end
  339. end
  340. end
  341. for _, queued_data in pairs(on_construct_queue) do
  342. queued_data.fn(queued_data.pos)
  343. end
  344. minetest.log("action", "TNT owned by " .. owner .. " detonated at " ..
  345. minetest.pos_to_string(pos) .. " with radius " .. radius)
  346. return drops, radius
  347. end
  348. function tnt.boom(pos, def)
  349. def = def or {}
  350. def.radius = def.radius or 1
  351. def.damage_radius = def.damage_radius or def.radius * 2
  352. local meta = minetest.get_meta(pos)
  353. local owner = meta:get_string("owner")
  354. if not def.explode_center then
  355. minetest.set_node(pos, {name = "tnt:boom"})
  356. end
  357. local sound = def.sound or "tnt_explode"
  358. minetest.sound_play(sound, {pos = pos, gain = 2.5,
  359. max_hear_distance = math.min(def.radius * 20, 128)})
  360. local drops, radius = tnt_explode(pos, def.radius, def.ignore_protection,
  361. def.ignore_on_blast, owner, def.explode_center)
  362. -- append entity drops
  363. local damage_radius = (radius / math.max(1, def.radius)) * def.damage_radius
  364. entity_physics(pos, damage_radius, drops)
  365. if not def.disable_drops then
  366. eject_drops(drops, pos, radius)
  367. end
  368. add_effects(pos, radius, drops)
  369. minetest.log("action", "A TNT explosion occurred at " .. minetest.pos_to_string(pos) ..
  370. " with radius " .. radius)
  371. end
  372. minetest.register_node("tnt:boom", {
  373. drawtype = "airlike",
  374. light_source = default.LIGHT_MAX,
  375. walkable = false,
  376. drop = "",
  377. groups = {dig_immediate = 3},
  378. -- unaffected by explosions
  379. on_blast = function() end,
  380. })
  381. minetest.register_node("tnt:gunpowder", {
  382. description = "Gun Powder",
  383. drawtype = "raillike",
  384. paramtype = "light",
  385. is_ground_content = false,
  386. sunlight_propagates = true,
  387. walkable = false,
  388. tiles = {
  389. "tnt_gunpowder_straight.png",
  390. "tnt_gunpowder_curved.png",
  391. "tnt_gunpowder_t_junction.png",
  392. "tnt_gunpowder_crossing.png"
  393. },
  394. inventory_image = "tnt_gunpowder_inventory.png",
  395. wield_image = "tnt_gunpowder_inventory.png",
  396. selection_box = {
  397. type = "fixed",
  398. fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
  399. },
  400. groups = {dig_immediate = 2, attached_node = 1, flammable = 5,
  401. connect_to_raillike = minetest.raillike_group("gunpowder")},
  402. sounds = default.node_sound_leaves_defaults(),
  403. on_punch = function(pos, node, puncher)
  404. if puncher:get_wielded_item():get_name() == "default:torch" then
  405. minetest.set_node(pos, {name = "tnt:gunpowder_burning"})
  406. minetest.log("action", puncher:get_player_name() ..
  407. " ignites tnt:gunpowder at " ..
  408. minetest.pos_to_string(pos))
  409. end
  410. end,
  411. on_blast = function(pos, intensity)
  412. minetest.set_node(pos, {name = "tnt:gunpowder_burning"})
  413. end,
  414. on_burn = function(pos)
  415. minetest.set_node(pos, {name = "tnt:gunpowder_burning"})
  416. end,
  417. on_ignite = function(pos, igniter)
  418. minetest.set_node(pos, {name = "tnt:gunpowder_burning"})
  419. end,
  420. })
  421. minetest.register_node("tnt:gunpowder_burning", {
  422. drawtype = "raillike",
  423. paramtype = "light",
  424. sunlight_propagates = true,
  425. walkable = false,
  426. light_source = 5,
  427. tiles = {{
  428. name = "tnt_gunpowder_burning_straight_animated.png",
  429. animation = {
  430. type = "vertical_frames",
  431. aspect_w = 16,
  432. aspect_h = 16,
  433. length = 1,
  434. }
  435. },
  436. {
  437. name = "tnt_gunpowder_burning_curved_animated.png",
  438. animation = {
  439. type = "vertical_frames",
  440. aspect_w = 16,
  441. aspect_h = 16,
  442. length = 1,
  443. }
  444. },
  445. {
  446. name = "tnt_gunpowder_burning_t_junction_animated.png",
  447. animation = {
  448. type = "vertical_frames",
  449. aspect_w = 16,
  450. aspect_h = 16,
  451. length = 1,
  452. }
  453. },
  454. {
  455. name = "tnt_gunpowder_burning_crossing_animated.png",
  456. animation = {
  457. type = "vertical_frames",
  458. aspect_w = 16,
  459. aspect_h = 16,
  460. length = 1,
  461. }
  462. }},
  463. selection_box = {
  464. type = "fixed",
  465. fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
  466. },
  467. drop = "",
  468. groups = {
  469. dig_immediate = 2,
  470. attached_node = 1,
  471. connect_to_raillike = minetest.raillike_group("gunpowder")
  472. },
  473. sounds = default.node_sound_leaves_defaults(),
  474. on_timer = function(pos, elapsed)
  475. for dx = -1, 1 do
  476. for dz = -1, 1 do
  477. if math.abs(dx) + math.abs(dz) == 1 then
  478. for dy = -1, 1 do
  479. tnt.burn({
  480. x = pos.x + dx,
  481. y = pos.y + dy,
  482. z = pos.z + dz,
  483. })
  484. end
  485. end
  486. end
  487. end
  488. minetest.remove_node(pos)
  489. end,
  490. -- unaffected by explosions
  491. on_blast = function() end,
  492. on_construct = function(pos)
  493. minetest.sound_play("tnt_gunpowder_burning", {pos = pos, gain = 2})
  494. minetest.get_node_timer(pos):start(1)
  495. end,
  496. })
  497. minetest.register_craft({
  498. output = "tnt:gunpowder 5",
  499. type = "shapeless",
  500. recipe = {"default:coal_lump", "default:gravel"}
  501. })
  502. minetest.register_craftitem("tnt:tnt_stick", {
  503. description = "TNT Stick",
  504. inventory_image = "tnt_tnt_stick.png",
  505. groups = {flammable = 5},
  506. })
  507. if enable_tnt then
  508. minetest.register_craft({
  509. output = "tnt:tnt_stick 2",
  510. recipe = {
  511. {"tnt:gunpowder", "", "tnt:gunpowder"},
  512. {"tnt:gunpowder", "default:paper", "tnt:gunpowder"},
  513. {"tnt:gunpowder", "", "tnt:gunpowder"},
  514. }
  515. })
  516. minetest.register_craft({
  517. output = "tnt:tnt",
  518. recipe = {
  519. {"tnt:tnt_stick", "tnt:tnt_stick", "tnt:tnt_stick"},
  520. {"tnt:tnt_stick", "tnt:tnt_stick", "tnt:tnt_stick"},
  521. {"tnt:tnt_stick", "tnt:tnt_stick", "tnt:tnt_stick"}
  522. }
  523. })
  524. minetest.register_abm({
  525. label = "TNT ignition",
  526. nodenames = {"group:tnt", "tnt:gunpowder"},
  527. neighbors = {"fire:basic_flame", "default:lava_source", "default:lava_flowing"},
  528. interval = 4,
  529. chance = 1,
  530. action = function(pos, node)
  531. tnt.burn(pos, node.name)
  532. end,
  533. })
  534. end
  535. function tnt.register_tnt(def)
  536. local name
  537. if not def.name:find(':') then
  538. name = "tnt:" .. def.name
  539. else
  540. name = def.name
  541. def.name = def.name:match(":([%w_]+)")
  542. end
  543. if not def.tiles then def.tiles = {} end
  544. local tnt_top = def.tiles.top or def.name .. "_top.png"
  545. local tnt_bottom = def.tiles.bottom or def.name .. "_bottom.png"
  546. local tnt_side = def.tiles.side or def.name .. "_side.png"
  547. local tnt_burning = def.tiles.burning or def.name .. "_top_burning_animated.png"
  548. if not def.damage_radius then def.damage_radius = def.radius * 2 end
  549. if enable_tnt then
  550. minetest.register_node(":" .. name, {
  551. description = def.description,
  552. tiles = {tnt_top, tnt_bottom, tnt_side},
  553. is_ground_content = false,
  554. groups = {dig_immediate = 2, mesecon = 2, tnt = 1, flammable = 5},
  555. sounds = default.node_sound_wood_defaults(),
  556. after_place_node = function(pos, placer)
  557. if placer:is_player() then
  558. local meta = minetest.get_meta(pos)
  559. meta:set_string("owner", placer:get_player_name())
  560. end
  561. end,
  562. on_punch = function(pos, node, puncher)
  563. if puncher:get_wielded_item():get_name() == "default:torch" then
  564. minetest.swap_node(pos, {name = name .. "_burning"})
  565. minetest.registered_nodes[name .. "_burning"].on_construct(pos)
  566. minetest.log("action", puncher:get_player_name() ..
  567. " ignites " .. node.name .. " at " ..
  568. minetest.pos_to_string(pos))
  569. end
  570. end,
  571. on_blast = function(pos, intensity)
  572. minetest.after(0.1, function()
  573. tnt.boom(pos, def)
  574. end)
  575. end,
  576. mesecons = {effector =
  577. {action_on =
  578. function(pos)
  579. tnt.boom(pos, def)
  580. end
  581. }
  582. },
  583. on_burn = function(pos)
  584. minetest.swap_node(pos, {name = name .. "_burning"})
  585. minetest.registered_nodes[name .. "_burning"].on_construct(pos)
  586. end,
  587. on_ignite = function(pos, igniter)
  588. minetest.swap_node(pos, {name = name .. "_burning"})
  589. minetest.registered_nodes[name .. "_burning"].on_construct(pos)
  590. end,
  591. })
  592. end
  593. minetest.register_node(":" .. name .. "_burning", {
  594. tiles = {
  595. {
  596. name = tnt_burning,
  597. animation = {
  598. type = "vertical_frames",
  599. aspect_w = 16,
  600. aspect_h = 16,
  601. length = 1,
  602. }
  603. },
  604. tnt_bottom, tnt_side
  605. },
  606. light_source = 5,
  607. drop = "",
  608. sounds = default.node_sound_wood_defaults(),
  609. groups = {falling_node = 1},
  610. on_timer = function(pos, elapsed)
  611. tnt.boom(pos, def)
  612. end,
  613. -- unaffected by explosions
  614. on_blast = function() end,
  615. on_construct = function(pos)
  616. minetest.sound_play("tnt_ignite", {pos = pos})
  617. minetest.get_node_timer(pos):start(4)
  618. minetest.check_for_falling(pos)
  619. end,
  620. })
  621. end
  622. tnt.register_tnt({
  623. name = "tnt:tnt",
  624. description = "TNT",
  625. radius = tnt_radius,
  626. })