mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
Removed Mese ingot. Made Mese Crystal break into 9 Mese Crystal fragments when
crafted alone. Made 3 Mese Crystals + 2 sticks form a Mese pickaxe, made 9 Mese Crystals form a Mese block. Mese Crystal fragments do not yet have a use but should in theory be used for mesecons et.al. or anything else that should not need the full value/power of a Mese Crystal.
This commit is contained in:
parent
c82b86eb1c
commit
bba2f04a5a
4 changed files with 15 additions and 14 deletions
|
@ -259,7 +259,7 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:pick_mese',
|
output = 'default:pick_mese',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:mese_ingot', 'default:mese_ingot', 'default:mese_ingot'},
|
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||||
{'', 'default:stick', ''},
|
{'', 'default:stick', ''},
|
||||||
{'', 'default:stick', ''},
|
{'', 'default:stick', ''},
|
||||||
}
|
}
|
||||||
|
@ -473,19 +473,26 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:meseblock',
|
output = 'default:meseblock',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:mese_ingot', 'default:mese_ingot', 'default:mese_ingot'},
|
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||||
{'default:mese_ingot', 'default:mese_ingot', 'default:mese_ingot'},
|
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||||
{'default:mese_ingot', 'default:mese_ingot', 'default:mese_ingot'},
|
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:mese_ingot 9',
|
output = 'default:mese_crystal 9',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:meseblock'},
|
{'default:meseblock'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'default:mese_crystal_fragment 9',
|
||||||
|
recipe = {
|
||||||
|
{'default:mese_crystal'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'default:mese',
|
output = 'default:mese',
|
||||||
|
@ -526,12 +533,6 @@ minetest.register_craft({
|
||||||
recipe = "default:iron_lump",
|
recipe = "default:iron_lump",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "cooking",
|
|
||||||
output = "default:mese_ingot",
|
|
||||||
recipe = "default:mese_crystal"
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
output = "default:clay_brick",
|
output = "default:clay_brick",
|
||||||
|
@ -1669,9 +1670,9 @@ minetest.register_craftitem("default:steel_ingot", {
|
||||||
inventory_image = "default_steel_ingot.png",
|
inventory_image = "default_steel_ingot.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("default:mese_ingot", {
|
minetest.register_craftitem("default:mese_crystal_fragment", {
|
||||||
description = "Mese Ingot",
|
description = "Mese Crystal Fragment",
|
||||||
inventory_image = "default_mese_ingot.png",
|
inventory_image = "default_mese_crystal_fragment.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("default:clay_brick", {
|
minetest.register_craftitem("default:clay_brick", {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 417 B |
BIN
mods/default/textures/default_mese_crystal_fragment.png
Normal file
BIN
mods/default/textures/default_mese_crystal_fragment.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 212 B |
Binary file not shown.
Before Width: | Height: | Size: 388 B |
Loading…
Add table
Reference in a new issue