Add files via upload
2
depens.txt
Normal file
@ -0,0 +1,2 @@
|
||||
default
|
||||
dye
|
1
description.txt
Normal file
@ -0,0 +1 @@
|
||||
This Mods adds Fake tnts with defaulttnt, blue, green and yellow textures!
|
89
init.lua
Normal file
@ -0,0 +1,89 @@
|
||||
minetest.register_node("faketnt:defaulttnt",{
|
||||
description = "Fake tnt with default textures",
|
||||
tiles = {
|
||||
"faketnt_defaultup.png",
|
||||
"faketnt_defaultdown.png",
|
||||
"faketnt_defaultside.png",
|
||||
"faketnt_defaultside.png",
|
||||
"faketnt_defaultside.png",
|
||||
"faketnt_defaultside.png"
|
||||
},
|
||||
groups = {oddly_breakable_by_hand = 3},
|
||||
})
|
||||
|
||||
minetest.register_node("faketnt:bluetnt",{
|
||||
description = "Fake tnt with blue textures",
|
||||
tiles = {
|
||||
"faketnt_blueup.png",
|
||||
"faketnt_bluedown.png",
|
||||
"faketnt_blueside.png",
|
||||
"faketnt_blueside.png",
|
||||
"faketnt_blueside.png",
|
||||
"faketnt_blueside.png"
|
||||
},
|
||||
groups = {oddly_breakable_by_hand = 3},
|
||||
})
|
||||
|
||||
minetest.register_node("faketnt:yellowtnt",{
|
||||
description = "Fake tnt with yellow textures",
|
||||
tiles = {
|
||||
"faketnt_yellowup.png",
|
||||
"faketnt_yellowdown.png",
|
||||
"faketnt_yellowside.png",
|
||||
"faketnt_yellowside.png",
|
||||
"faketnt_yellowside.png",
|
||||
"faketnt_yellowside.png"
|
||||
},
|
||||
groups = {oddly_breakable_by_hand = 3},
|
||||
})
|
||||
|
||||
minetest.register_node("faketnt:greentnt",{
|
||||
description = "Fake tnt with green textures",
|
||||
tiles = {
|
||||
"faketnt_greenup.png",
|
||||
"faketnt_greendown.png",
|
||||
"faketnt_greenside.png",
|
||||
"faketnt_greenside.png",
|
||||
"faketnt_greenside.png",
|
||||
"faketnt_greenside.png"
|
||||
},
|
||||
groups = {oddly_breakable_by_hand = 3},
|
||||
})
|
||||
|
||||
--------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
minetest.register_craft({
|
||||
output = "faketnt:defaulttnt",
|
||||
recipe = {
|
||||
{"dye:red","dye:red","dye:red"},
|
||||
{"dye:white","dye:black","dye:white"},
|
||||
{"dye:red","dye:red","dye:red"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "faketnt:bluetnt",
|
||||
recipe = {
|
||||
{"dye:blue","dye:blue","dye:blue"},
|
||||
{"dye:white","dye:black","dye:white"},
|
||||
{"dye:blue","dye:blue","dye:blue"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "faketnt:yellowtnt",
|
||||
recipe = {
|
||||
{"dye:yellow","dye:yellow","dye:yellow"},
|
||||
{"dye:white","dye:black","dye:white"},
|
||||
{"dye:yellow","dye:yellow","dye:yellow"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "faketnt:greentnt",
|
||||
recipe = {
|
||||
{"dye:green","dye:green","dye:green"},
|
||||
{"dye:white","dye:black","dye:white"},
|
||||
{"dye:green","dye:green","dye:green"},
|
||||
},
|
||||
})
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 609 KiB |
BIN
textures/faketnt_bluedown.png
Normal file
After Width: | Height: | Size: 136 B |
BIN
textures/faketnt_blueside.png
Normal file
After Width: | Height: | Size: 156 B |
BIN
textures/faketnt_blueup.png
Normal file
After Width: | Height: | Size: 235 B |
BIN
textures/faketnt_defaultdown.png
Normal file
After Width: | Height: | Size: 99 B |
BIN
textures/faketnt_defaultside.png
Normal file
After Width: | Height: | Size: 128 B |
BIN
textures/faketnt_defaultup.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
textures/faketnt_greendown.png
Normal file
After Width: | Height: | Size: 155 B |
BIN
textures/faketnt_greenside.png
Normal file
After Width: | Height: | Size: 161 B |
BIN
textures/faketnt_greenup.png
Normal file
After Width: | Height: | Size: 252 B |
BIN
textures/faketnt_yellowdown.png
Normal file
After Width: | Height: | Size: 130 B |
BIN
textures/faketnt_yellowside.png
Normal file
After Width: | Height: | Size: 170 B |
BIN
textures/faketnt_yellowup.png
Normal file
After Width: | Height: | Size: 229 B |