Skip to content

Commit 553b0f9

Browse files
TumeniNodesparamat
authored andcommittedAug 28, 2019
Add new TNT sounds
1 parent 7269711 commit 553b0f9

File tree

6 files changed

+56
-5
lines changed

6 files changed

+56
-5
lines changed
 

Diff for: ‎mods/tnt/README.txt

+19-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ShadowNinja (MIT)
99
sofar (sofar@foo-projects.org) (MIT)
1010
Various Minetest developers and contributors (MIT)
1111

12-
Authors of media (textures)
13-
---------------------------
12+
Authors of media
13+
----------------
1414
BlockMen (CC BY-SA 3.0):
1515
All textures not mentioned below.
1616

@@ -26,6 +26,23 @@ tnt_blast.png
2626
paramat (CC BY-SA 3.0)
2727
tnt_tnt_stick.png - Derived from a texture by benrob0329.
2828

29+
TumeniNodes (CC0 1.0)
30+
tnt_explode.ogg
31+
renamed, edited, and converted to .ogg from Explosion2.wav
32+
by steveygos93 (CC0 1.0)
33+
<https://freesound.org/s/80401/>
34+
35+
tnt_ignite.ogg
36+
renamed, edited, and converted to .ogg from sparkler_fuse_nm.wav
37+
by theneedle.tv (CC0 1.0)
38+
<https://freesound.org/s/316682/>
39+
40+
tnt_gunpowder_burning.ogg
41+
renamed, edited, and converted to .ogg from road flare ignite burns.wav
42+
by frankelmedico (CC0 1.0)
43+
<https://freesound.org/s/348767/>
44+
45+
2946
Introduction
3047
------------
3148
This mod adds TNT to Minetest. TNT is a tool to help the player

Diff for: ‎mods/tnt/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ function tnt.boom(pos, def)
396396
minetest.set_node(pos, {name = "tnt:boom"})
397397
end
398398
local sound = def.sound or "tnt_explode"
399-
minetest.sound_play(sound, {pos = pos, gain = 1.5,
399+
minetest.sound_play(sound, {pos = pos, gain = 2.5,
400400
max_hear_distance = math.min(def.radius * 20, 128)})
401401
local drops, radius = tnt_explode(pos, def.radius, def.ignore_protection,
402402
def.ignore_on_blast, owner, def.explode_center)

Diff for: ‎mods/tnt/license.txt

+36-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ DEALINGS IN THE SOFTWARE.
2626
For more details:
2727
https://opensource.org/licenses/MIT
2828

29+
===================================
2930

30-
Licenses of media (textures)
31-
----------------------------
31+
Licenses of media
32+
-----------------
3233

3334
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
3435
Copyright (C) 2014-2016 BlockMen
@@ -64,3 +65,36 @@ rights may limit how you use the material.
6465

6566
For more details:
6667
http://creativecommons.org/licenses/by-sa/3.0/
68+
69+
====================================================
70+
71+
CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
72+
for audio files (found in sounds folder)
73+
TumeniNodes
74+
steveygos93
75+
theneedle.tv
76+
frankelmedico
77+
78+
No Copyright
79+
80+
The person who associated a work with this deed has dedicated the work to the public domain
81+
by waiving all of his or her rights to the work worldwide under copyright law, including all
82+
related and neighboring rights, to the extent allowed by law.
83+
84+
You can copy, modify, distribute and perform the work, even for commercial purposes, all
85+
without asking permission. See Other Information below.
86+
87+
In no way are the patent or trademark rights of any person affected by CC0, nor are the
88+
rights that other persons may have in the work or in how the work is used, such as publicity
89+
or privacy rights.
90+
91+
Unless expressly stated otherwise, the person who associated a work with this deed makes no
92+
warranties about the work, and disclaims liability for all uses of the work, to the fullest
93+
extent permitted by applicable law.
94+
95+
When using or citing the work, you should not imply endorsement by the author or the affirmer.
96+
97+
This license is acceptable for Free Cultural Works.
98+
For more Information:
99+
https://creativecommons.org/publicdomain/zero/1.0/
100+

Diff for: ‎mods/tnt/sounds/tnt_explode.ogg

8.46 KB
Binary file not shown.

Diff for: ‎mods/tnt/sounds/tnt_gunpowder_burning.ogg

-26.3 KB
Binary file not shown.

Diff for: ‎mods/tnt/sounds/tnt_ignite.ogg

18.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.