aaaa
This commit is contained in:
46
init.lua
46
init.lua
@@ -288,6 +288,7 @@ minetest.register_craftitem("tuf:enchant", {
|
||||
|
||||
minetest.register_craftitem("tuf:magic_shard", {
|
||||
description = ("Magic Shard"),
|
||||
_tt_help = minetest.colorize(mcl_colors.YELLOW, ("GAY")),
|
||||
inventory_image = "magic_shard.png",
|
||||
stack_max = 64,
|
||||
})
|
||||
@@ -330,3 +331,48 @@ minetest.register_craft({
|
||||
type = "shapeless",
|
||||
recipe = { "mcl_mobitems:gunpowder", "tuf:enchant", "mcl_mobitems:gunpowder", "mcl_mobitems:gunpowder", "mcl_mobitems:gunpowder" },
|
||||
})
|
||||
|
||||
minetest.register_node("tuf:dragon_eg", {
|
||||
description = ("Dragon Eg"),
|
||||
tiles = {
|
||||
"mcl_end_dragon_egg.png",
|
||||
"mcl_end_dragon_egg.png",
|
||||
"mcl_end_dragon_egg.png",
|
||||
"mcl_end_dragon_egg.png",
|
||||
"mcl_end_dragon_egg.png",
|
||||
"mcl_end_dragon_egg.png",
|
||||
},
|
||||
drawtype = "nodebox",
|
||||
is_ground_content = false,
|
||||
paramtype = "light",
|
||||
light_source = 1,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{ -0.375, -0.5, -0.375, 0.375, -0.4375, 0.375 },
|
||||
{ -0.5, -0.4375, -0.5, 0.5, -0.1875, 0.5 },
|
||||
{ -0.4375, -0.1875, -0.4375, 0.4375, 0, 0.4375 },
|
||||
{ -0.375, 0, -0.375, 0.375, 0.125, 0.375 },
|
||||
{ -0.3125, 0.125, -0.3125, 0.3125, 0.25, 0.3125 },
|
||||
{ -0.25, 0.25, -0.25, 0.25, 0.3125, 0.25 },
|
||||
{ -0.1875, 0.3125, -0.1875, 0.1875, 0.375, 0.1875 },
|
||||
{ -0.125, 0.375, -0.125, 0.125, 0.4375, 0.125 },
|
||||
{ -0.0625, 0.4375, -0.0625, 0.0625, 0.5, 0.0625 },
|
||||
}
|
||||
},
|
||||
selection_box = {
|
||||
type = "regular",
|
||||
},
|
||||
groups = { handy = 1, falling_node = 1, deco_block = 1 },
|
||||
_mcl_blast_resistance = 99999,
|
||||
_mcl_hardness = 3,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "tuf:dragon_eg",
|
||||
recipe = {
|
||||
{ "mcl_deepslate:tuff", "mcl_deepslate:tuff", "mcl_deepslate:tuff" },
|
||||
{ "mcl_deepslate:tuff", "tuf:magic_shard", "mcl_deepslate:tuff" },
|
||||
{ "mcl_deepslate:tuff", "mcl_deepslate:tuff", "mcl_deepslate:tuff" }
|
||||
}
|
||||
})
|
||||
|
||||
BIN
textures/dispel.png
Normal file
BIN
textures/dispel.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 277 B |
BIN
textures/enchant.png
Normal file
BIN
textures/enchant.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 258 B |
BIN
textures/magic_shard.png
Normal file
BIN
textures/magic_shard.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 251 B |
BIN
textures/mcl_end_dragon_egg.png
Normal file
BIN
textures/mcl_end_dragon_egg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 196 B |
Reference in New Issue
Block a user