Merge branch 'stable-5' of yunohost.local:minetest/minetest_game into nalc-dev
@ -101,8 +101,7 @@ paramat (CC BY-SA 3.0):
|
||||
default_dry_grass.png
|
||||
default_dry_grass_side.png
|
||||
default_dry_grass_*.png
|
||||
default_grass.png
|
||||
default_grass_side.png
|
||||
default_grass_side.png -- Derived from a texture by TumeniNodes (CC-BY-SA 3.0)
|
||||
default_mese_block.png
|
||||
default_silver_sand.png
|
||||
default_mese_post_light_side.png
|
||||
@ -129,6 +128,8 @@ TumeniNodes (CC BY-SA 3.0):
|
||||
default_desert_cobble.png -- Derived from a texture by brunob.santos (CC BY-SA 3.0)
|
||||
default_coniferous_litter.png
|
||||
default_coniferous_litter_side.png
|
||||
default_grass.png
|
||||
default_dry_dirt.png
|
||||
|
||||
BlockMen (CC BY-SA 3.0):
|
||||
default_aspen_leaves.png -- Derived from Sofar's texture
|
||||
|
@ -1,5 +1,8 @@
|
||||
default.chest = {}
|
||||
|
||||
-- support for MT game translation.
|
||||
local S = default.get_translator
|
||||
|
||||
function default.chest.get_chest_formspec(pos)
|
||||
local spos = pos.x .. "," .. pos.y .. "," .. pos.z
|
||||
local formspec =
|
||||
@ -84,7 +87,7 @@ function default.chest.register_chest(name, d)
|
||||
if def.protected then
|
||||
def.on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("infotext", "Locked Chest")
|
||||
meta:set_string("infotext", S("Locked Chest"))
|
||||
meta:set_string("owner", "")
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("main", 8*4)
|
||||
@ -92,8 +95,7 @@ function default.chest.register_chest(name, d)
|
||||
def.after_place_node = function(pos, placer)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("owner", placer:get_player_name() or "")
|
||||
meta:set_string("infotext", "Locked Chest (owned by " ..
|
||||
meta:get_string("owner") .. ")")
|
||||
meta:set_string("infotext", S("Locked Chest (owned by @1)", meta:get_string("owner")))
|
||||
end
|
||||
def.can_dig = function(pos,player)
|
||||
local meta = minetest.get_meta(pos);
|
||||
@ -171,7 +173,7 @@ function default.chest.register_chest(name, d)
|
||||
-- verify placer is owner of lockable chest
|
||||
if owner ~= pn then
|
||||
minetest.record_protection_violation(pos, pn)
|
||||
minetest.chat_send_player(pn, "You do not own this chest.")
|
||||
minetest.chat_send_player(pn, S("You do not own this chest."))
|
||||
return nil
|
||||
end
|
||||
|
||||
@ -181,12 +183,12 @@ function default.chest.register_chest(name, d)
|
||||
meta:set_string("key_lock_secret", secret)
|
||||
end
|
||||
|
||||
return secret, "a locked chest", owner
|
||||
return secret, S("a locked chest"), owner
|
||||
end
|
||||
else
|
||||
def.on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("infotext", "Chest")
|
||||
meta:set_string("infotext", S("Chest"))
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("main", 8*4)
|
||||
end
|
||||
@ -285,7 +287,7 @@ function default.chest.register_chest(name, d)
|
||||
end
|
||||
|
||||
default.chest.register_chest("chest", {
|
||||
description = "Chest",
|
||||
description = S("Chest"),
|
||||
tiles = {
|
||||
"default_chest_top.png",
|
||||
"default_chest_top.png",
|
||||
@ -301,7 +303,7 @@ default.chest.register_chest("chest", {
|
||||
})
|
||||
|
||||
default.chest.register_chest("chest_locked", {
|
||||
description = "Locked Chest",
|
||||
description = S("Locked Chest"),
|
||||
tiles = {
|
||||
"default_chest_top.png",
|
||||
"default_chest_top.png",
|
||||
|
@ -1,51 +1,51 @@
|
||||
-- mods/default/crafting.lua
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:wood 4',
|
||||
output = "default:wood 4",
|
||||
recipe = {
|
||||
{'default:tree'},
|
||||
{"default:tree"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:junglewood 4',
|
||||
output = "default:junglewood 4",
|
||||
recipe = {
|
||||
{'default:jungletree'},
|
||||
{"default:jungletree"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pine_wood 4',
|
||||
output = "default:pine_wood 4",
|
||||
recipe = {
|
||||
{'default:pine_tree'},
|
||||
{"default:pine_tree"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:acacia_wood 4',
|
||||
output = "default:acacia_wood 4",
|
||||
recipe = {
|
||||
{'default:acacia_tree'},
|
||||
{"default:acacia_tree"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:aspen_wood 4',
|
||||
output = "default:aspen_wood 4",
|
||||
recipe = {
|
||||
{'default:aspen_tree'},
|
||||
{"default:aspen_tree"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:wood',
|
||||
output = "default:wood",
|
||||
recipe = {
|
||||
{'default:bush_stem'},
|
||||
{"default:bush_stem"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:acacia_wood',
|
||||
output = "default:acacia_wood",
|
||||
recipe = {
|
||||
{'default:acacia_bush_stem'},
|
||||
{"default:acacia_bush_stem"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -57,143 +57,143 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:stick 4',
|
||||
output = "default:stick 4",
|
||||
recipe = {
|
||||
{'group:wood'},
|
||||
{"group:wood"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sign_wall_steel 3',
|
||||
output = "default:sign_wall_steel 3",
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'', 'group:stick', ''},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sign_wall_wood 3',
|
||||
output = "default:sign_wall_wood 3",
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'', 'group:stick', ''},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:torch 4',
|
||||
output = "default:torch 4",
|
||||
recipe = {
|
||||
{'default:coal_lump'},
|
||||
{'group:stick'},
|
||||
{"default:coal_lump"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pick_wood',
|
||||
output = "default:pick_wood",
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'', 'group:stick', ''},
|
||||
{'', 'group:stick', ''},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pick_stone',
|
||||
output = "default:pick_stone",
|
||||
recipe = {
|
||||
{'group:stone', 'group:stone', 'group:stone'},
|
||||
{'', 'group:stick', ''},
|
||||
{'', 'group:stick', ''},
|
||||
{"group:stone", "group:stone", "group:stone"},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pick_steel',
|
||||
output = "default:pick_steel",
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'', 'group:stick', ''},
|
||||
{'', 'group:stick', ''},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pick_bronze',
|
||||
output = "default:pick_bronze",
|
||||
recipe = {
|
||||
{'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'},
|
||||
{'', 'group:stick', ''},
|
||||
{'', 'group:stick', ''},
|
||||
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pick_mese',
|
||||
output = "default:pick_mese",
|
||||
recipe = {
|
||||
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||
{'', 'group:stick', ''},
|
||||
{'', 'group:stick', ''},
|
||||
{"default:mese_crystal", "default:mese_crystal", "default:mese_crystal"},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:pick_diamond',
|
||||
output = "default:pick_diamond",
|
||||
recipe = {
|
||||
{'default:diamond', 'default:diamond', 'default:diamond'},
|
||||
{'', 'group:stick', ''},
|
||||
{'', 'group:stick', ''},
|
||||
{"default:diamond", "default:diamond", "default:diamond"},
|
||||
{"", "group:stick", ""},
|
||||
{"", "group:stick", ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:shovel_wood',
|
||||
output = "default:shovel_wood",
|
||||
recipe = {
|
||||
{'group:wood'},
|
||||
{'group:stick'},
|
||||
{'group:stick'},
|
||||
{"group:wood"},
|
||||
{"group:stick"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:shovel_stone',
|
||||
output = "default:shovel_stone",
|
||||
recipe = {
|
||||
{'group:stone'},
|
||||
{'group:stick'},
|
||||
{'group:stick'},
|
||||
{"group:stone"},
|
||||
{"group:stick"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:shovel_steel',
|
||||
output = "default:shovel_steel",
|
||||
recipe = {
|
||||
{'default:steel_ingot'},
|
||||
{'group:stick'},
|
||||
{'group:stick'},
|
||||
{"default:steel_ingot"},
|
||||
{"group:stick"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:shovel_bronze',
|
||||
output = "default:shovel_bronze",
|
||||
recipe = {
|
||||
{'default:bronze_ingot'},
|
||||
{'group:stick'},
|
||||
{'group:stick'},
|
||||
{"default:bronze_ingot"},
|
||||
{"group:stick"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:shovel_mese',
|
||||
output = "default:shovel_mese",
|
||||
recipe = {
|
||||
{'default:mese_crystal'},
|
||||
{'group:stick'},
|
||||
{'group:stick'},
|
||||
{"default:mese_crystal"},
|
||||
{"group:stick"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:shovel_diamond',
|
||||
output = "default:shovel_diamond",
|
||||
recipe = {
|
||||
{'default:diamond'},
|
||||
{'group:stick'},
|
||||
{'group:stick'},
|
||||
{"default:diamond"},
|
||||
{"group:stick"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -201,135 +201,135 @@ minetest.register_craft({
|
||||
-- Recipes face left to match appearence in textures and inventory
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:axe_wood',
|
||||
output = "default:axe_wood",
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood'},
|
||||
{'group:wood', 'group:stick'},
|
||||
{'', 'group:stick'},
|
||||
{"group:wood", "group:wood"},
|
||||
{"group:wood", "group:stick"},
|
||||
{"", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:axe_stone',
|
||||
output = "default:axe_stone",
|
||||
recipe = {
|
||||
{'group:stone', 'group:stone'},
|
||||
{'group:stone', 'group:stick'},
|
||||
{'', 'group:stick'},
|
||||
{"group:stone", "group:stone"},
|
||||
{"group:stone", "group:stick"},
|
||||
{"", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:axe_steel',
|
||||
output = "default:axe_steel",
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'group:stick'},
|
||||
{'', 'group:stick'},
|
||||
{"default:steel_ingot", "default:steel_ingot"},
|
||||
{"default:steel_ingot", "group:stick"},
|
||||
{"", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:axe_bronze',
|
||||
output = "default:axe_bronze",
|
||||
recipe = {
|
||||
{'default:bronze_ingot', 'default:bronze_ingot'},
|
||||
{'default:bronze_ingot', 'group:stick'},
|
||||
{'', 'group:stick'},
|
||||
{"default:bronze_ingot", "default:bronze_ingot"},
|
||||
{"default:bronze_ingot", "group:stick"},
|
||||
{"", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:axe_mese',
|
||||
output = "default:axe_mese",
|
||||
recipe = {
|
||||
{'default:mese_crystal', 'default:mese_crystal'},
|
||||
{'default:mese_crystal', 'group:stick'},
|
||||
{'', 'group:stick'},
|
||||
{"default:mese_crystal", "default:mese_crystal"},
|
||||
{"default:mese_crystal", "group:stick"},
|
||||
{"", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:axe_diamond',
|
||||
output = "default:axe_diamond",
|
||||
recipe = {
|
||||
{'default:diamond', 'default:diamond'},
|
||||
{'default:diamond', 'group:stick'},
|
||||
{'', 'group:stick'},
|
||||
{"default:diamond", "default:diamond"},
|
||||
{"default:diamond", "group:stick"},
|
||||
{"", "group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sword_wood',
|
||||
output = "default:sword_wood",
|
||||
recipe = {
|
||||
{'group:wood'},
|
||||
{'group:wood'},
|
||||
{'group:stick'},
|
||||
{"group:wood"},
|
||||
{"group:wood"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sword_stone',
|
||||
output = "default:sword_stone",
|
||||
recipe = {
|
||||
{'group:stone'},
|
||||
{'group:stone'},
|
||||
{'group:stick'},
|
||||
{"group:stone"},
|
||||
{"group:stone"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sword_steel',
|
||||
output = "default:sword_steel",
|
||||
recipe = {
|
||||
{'default:steel_ingot'},
|
||||
{'default:steel_ingot'},
|
||||
{'group:stick'},
|
||||
{"default:steel_ingot"},
|
||||
{"default:steel_ingot"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sword_bronze',
|
||||
output = "default:sword_bronze",
|
||||
recipe = {
|
||||
{'default:bronze_ingot'},
|
||||
{'default:bronze_ingot'},
|
||||
{'group:stick'},
|
||||
{"default:bronze_ingot"},
|
||||
{"default:bronze_ingot"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sword_mese',
|
||||
output = "default:sword_mese",
|
||||
recipe = {
|
||||
{'default:mese_crystal'},
|
||||
{'default:mese_crystal'},
|
||||
{'group:stick'},
|
||||
{"default:mese_crystal"},
|
||||
{"default:mese_crystal"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:sword_diamond',
|
||||
output = "default:sword_diamond",
|
||||
recipe = {
|
||||
{'default:diamond'},
|
||||
{'default:diamond'},
|
||||
{'group:stick'},
|
||||
{"default:diamond"},
|
||||
{"default:diamond"},
|
||||
{"group:stick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:skeleton_key',
|
||||
output = "default:skeleton_key",
|
||||
recipe = {
|
||||
{'default:gold_ingot'},
|
||||
{"default:gold_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:chest',
|
||||
output = "default:chest",
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'group:wood', '', 'group:wood'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"group:wood", "", "group:wood"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:chest_locked',
|
||||
output = "default:chest_locked",
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'group:wood', 'default:steel_ingot', 'group:wood'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"group:wood", "default:steel_ingot", "group:wood"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -340,59 +340,59 @@ minetest.register_craft( {
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:furnace',
|
||||
output = "default:furnace",
|
||||
recipe = {
|
||||
{'group:stone', 'group:stone', 'group:stone'},
|
||||
{'group:stone', '', 'group:stone'},
|
||||
{'group:stone', 'group:stone', 'group:stone'},
|
||||
{"group:stone", "group:stone", "group:stone"},
|
||||
{"group:stone", "", "group:stone"},
|
||||
{"group:stone", "group:stone", "group:stone"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:coalblock',
|
||||
output = "default:coalblock",
|
||||
recipe = {
|
||||
{'default:coal_lump', 'default:coal_lump', 'default:coal_lump'},
|
||||
{'default:coal_lump', 'default:coal_lump', 'default:coal_lump'},
|
||||
{'default:coal_lump', 'default:coal_lump', 'default:coal_lump'},
|
||||
{"default:coal_lump", "default:coal_lump", "default:coal_lump"},
|
||||
{"default:coal_lump", "default:coal_lump", "default:coal_lump"},
|
||||
{"default:coal_lump", "default:coal_lump", "default:coal_lump"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:coal_lump 9',
|
||||
output = "default:coal_lump 9",
|
||||
recipe = {
|
||||
{'default:coalblock'},
|
||||
{"default:coalblock"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:steelblock',
|
||||
output = "default:steelblock",
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:steel_ingot 9',
|
||||
output = "default:steel_ingot 9",
|
||||
recipe = {
|
||||
{'default:steelblock'},
|
||||
{"default:steelblock"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:copperblock',
|
||||
output = "default:copperblock",
|
||||
recipe = {
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
{'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
|
||||
{"default:copper_ingot", "default:copper_ingot", "default:copper_ingot"},
|
||||
{"default:copper_ingot", "default:copper_ingot", "default:copper_ingot"},
|
||||
{"default:copper_ingot", "default:copper_ingot", "default:copper_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:copper_ingot 9',
|
||||
output = "default:copper_ingot 9",
|
||||
recipe = {
|
||||
{'default:copperblock'},
|
||||
{"default:copperblock"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -422,50 +422,50 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:bronzeblock',
|
||||
output = "default:bronzeblock",
|
||||
recipe = {
|
||||
{'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'},
|
||||
{'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'},
|
||||
{'default:bronze_ingot', 'default:bronze_ingot', 'default:bronze_ingot'},
|
||||
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
|
||||
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
|
||||
{"default:bronze_ingot", "default:bronze_ingot", "default:bronze_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:bronze_ingot 9',
|
||||
output = "default:bronze_ingot 9",
|
||||
recipe = {
|
||||
{'default:bronzeblock'},
|
||||
{"default:bronzeblock"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:goldblock',
|
||||
output = "default:goldblock",
|
||||
recipe = {
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
||||
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
||||
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:gold_ingot 9',
|
||||
output = "default:gold_ingot 9",
|
||||
recipe = {
|
||||
{'default:goldblock'},
|
||||
{"default:goldblock"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:diamondblock',
|
||||
output = "default:diamondblock",
|
||||
recipe = {
|
||||
{'default:diamond', 'default:diamond', 'default:diamond'},
|
||||
{'default:diamond', 'default:diamond', 'default:diamond'},
|
||||
{'default:diamond', 'default:diamond', 'default:diamond'},
|
||||
{"default:diamond", "default:diamond", "default:diamond"},
|
||||
{"default:diamond", "default:diamond", "default:diamond"},
|
||||
{"default:diamond", "default:diamond", "default:diamond"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:diamond 9',
|
||||
output = "default:diamond 9",
|
||||
recipe = {
|
||||
{'default:diamondblock'},
|
||||
{"default:diamondblock"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -566,57 +566,57 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:clay',
|
||||
output = "default:clay",
|
||||
recipe = {
|
||||
{'default:clay_lump', 'default:clay_lump'},
|
||||
{'default:clay_lump', 'default:clay_lump'},
|
||||
{"default:clay_lump", "default:clay_lump"},
|
||||
{"default:clay_lump", "default:clay_lump"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:clay_lump 4',
|
||||
output = "default:clay_lump 4",
|
||||
recipe = {
|
||||
{'default:clay'},
|
||||
{"default:clay"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:brick',
|
||||
output = "default:brick",
|
||||
recipe = {
|
||||
{'default:clay_brick', 'default:clay_brick'},
|
||||
{'default:clay_brick', 'default:clay_brick'},
|
||||
{"default:clay_brick", "default:clay_brick"},
|
||||
{"default:clay_brick", "default:clay_brick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:clay_brick 4',
|
||||
output = "default:clay_brick 4",
|
||||
recipe = {
|
||||
{'default:brick'},
|
||||
{"default:brick"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:paper',
|
||||
output = "default:paper",
|
||||
recipe = {
|
||||
{'default:papyrus', 'default:papyrus', 'default:papyrus'},
|
||||
{"default:papyrus", "default:papyrus", "default:papyrus"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:book',
|
||||
output = "default:book",
|
||||
recipe = {
|
||||
{'default:paper'},
|
||||
{'default:paper'},
|
||||
{'default:paper'},
|
||||
{"default:paper"},
|
||||
{"default:paper"},
|
||||
{"default:paper"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:bookshelf',
|
||||
output = "default:bookshelf",
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'default:book', 'default:book', 'default:book'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"default:book", "default:book", "default:book"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -630,34 +630,34 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:ladder_steel 15',
|
||||
output = "default:ladder_steel 15",
|
||||
recipe = {
|
||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
||||
{"default:steel_ingot", "", "default:steel_ingot"},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"default:steel_ingot", "", "default:steel_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:mese',
|
||||
output = "default:mese",
|
||||
recipe = {
|
||||
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||
{'default:mese_crystal', 'default:mese_crystal', 'default:mese_crystal'},
|
||||
{"default:mese_crystal", "default:mese_crystal", "default:mese_crystal"},
|
||||
{"default:mese_crystal", "default:mese_crystal", "default:mese_crystal"},
|
||||
{"default:mese_crystal", "default:mese_crystal", "default:mese_crystal"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:mese_crystal 9',
|
||||
output = "default:mese_crystal 9",
|
||||
recipe = {
|
||||
{'default:mese'},
|
||||
{"default:mese"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:mese_crystal_fragment 9',
|
||||
output = "default:mese_crystal_fragment 9",
|
||||
recipe = {
|
||||
{'default:mese_crystal'},
|
||||
{"default:mese_crystal"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -671,10 +671,10 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:meselamp',
|
||||
output = "default:meselamp",
|
||||
recipe = {
|
||||
{'default:glass'},
|
||||
{'default:mese_crystal'},
|
||||
{"default:glass"},
|
||||
{"default:mese_crystal"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -688,85 +688,85 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:obsidian_shard 9',
|
||||
output = "default:obsidian_shard 9",
|
||||
recipe = {
|
||||
{'default:obsidian'}
|
||||
{"default:obsidian"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:obsidian',
|
||||
output = "default:obsidian",
|
||||
recipe = {
|
||||
{'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'},
|
||||
{'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'},
|
||||
{'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'},
|
||||
{"default:obsidian_shard", "default:obsidian_shard", "default:obsidian_shard"},
|
||||
{"default:obsidian_shard", "default:obsidian_shard", "default:obsidian_shard"},
|
||||
{"default:obsidian_shard", "default:obsidian_shard", "default:obsidian_shard"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:obsidianbrick 4',
|
||||
output = "default:obsidianbrick 4",
|
||||
recipe = {
|
||||
{'default:obsidian', 'default:obsidian'},
|
||||
{'default:obsidian', 'default:obsidian'}
|
||||
{"default:obsidian", "default:obsidian"},
|
||||
{"default:obsidian", "default:obsidian"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:obsidian_block 9',
|
||||
output = "default:obsidian_block 9",
|
||||
recipe = {
|
||||
{'default:obsidian', 'default:obsidian', 'default:obsidian'},
|
||||
{'default:obsidian', 'default:obsidian', 'default:obsidian'},
|
||||
{'default:obsidian', 'default:obsidian', 'default:obsidian'},
|
||||
{"default:obsidian", "default:obsidian", "default:obsidian"},
|
||||
{"default:obsidian", "default:obsidian", "default:obsidian"},
|
||||
{"default:obsidian", "default:obsidian", "default:obsidian"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:stonebrick 4',
|
||||
output = "default:stonebrick 4",
|
||||
recipe = {
|
||||
{'default:stone', 'default:stone'},
|
||||
{'default:stone', 'default:stone'},
|
||||
{"default:stone", "default:stone"},
|
||||
{"default:stone", "default:stone"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:stone_block 9',
|
||||
output = "default:stone_block 9",
|
||||
recipe = {
|
||||
{'default:stone', 'default:stone', 'default:stone'},
|
||||
{'default:stone', 'default:stone', 'default:stone'},
|
||||
{'default:stone', 'default:stone', 'default:stone'},
|
||||
{"default:stone", "default:stone", "default:stone"},
|
||||
{"default:stone", "default:stone", "default:stone"},
|
||||
{"default:stone", "default:stone", "default:stone"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:desert_stonebrick 4',
|
||||
output = "default:desert_stonebrick 4",
|
||||
recipe = {
|
||||
{'default:desert_stone', 'default:desert_stone'},
|
||||
{'default:desert_stone', 'default:desert_stone'},
|
||||
{"default:desert_stone", "default:desert_stone"},
|
||||
{"default:desert_stone", "default:desert_stone"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:desert_stone_block 9',
|
||||
output = "default:desert_stone_block 9",
|
||||
recipe = {
|
||||
{'default:desert_stone', 'default:desert_stone', 'default:desert_stone'},
|
||||
{'default:desert_stone', 'default:desert_stone', 'default:desert_stone'},
|
||||
{'default:desert_stone', 'default:desert_stone', 'default:desert_stone'},
|
||||
{"default:desert_stone", "default:desert_stone", "default:desert_stone"},
|
||||
{"default:desert_stone", "default:desert_stone", "default:desert_stone"},
|
||||
{"default:desert_stone", "default:desert_stone", "default:desert_stone"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:snowblock',
|
||||
output = "default:snowblock",
|
||||
recipe = {
|
||||
{'default:snow', 'default:snow', 'default:snow'},
|
||||
{'default:snow', 'default:snow', 'default:snow'},
|
||||
{'default:snow', 'default:snow', 'default:snow'},
|
||||
{"default:snow", "default:snow", "default:snow"},
|
||||
{"default:snow", "default:snow", "default:snow"},
|
||||
{"default:snow", "default:snow", "default:snow"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:snow 9',
|
||||
output = "default:snow 9",
|
||||
recipe = {
|
||||
{'default:snowblock'},
|
||||
{"default:snowblock"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -864,16 +864,16 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'cooking',
|
||||
output = 'default:gold_ingot',
|
||||
recipe = 'default:skeleton_key',
|
||||
type = "cooking",
|
||||
output = "default:gold_ingot",
|
||||
recipe = "default:skeleton_key",
|
||||
cooktime = 5,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'cooking',
|
||||
output = 'default:gold_ingot',
|
||||
recipe = 'default:key',
|
||||
type = "cooking",
|
||||
output = "default:gold_ingot",
|
||||
recipe = "default:key",
|
||||
cooktime = 5,
|
||||
})
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
-- mods/default/craftitems.lua
|
||||
|
||||
-- support for MT game translation.
|
||||
local S = default.get_translator
|
||||
|
||||
minetest.register_craftitem("default:stick", {
|
||||
description = "Stick",
|
||||
description = S("Stick"),
|
||||
inventory_image = "default_stick.png",
|
||||
groups = {stick = 1, flammable = 2},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:paper", {
|
||||
description = "Paper",
|
||||
description = S("Paper"),
|
||||
inventory_image = "default_paper.png",
|
||||
groups = {flammable = 3},
|
||||
})
|
||||
@ -49,23 +52,24 @@ local function book_on_use(itemstack, user)
|
||||
end
|
||||
|
||||
local formspec
|
||||
local esc = minetest.formspec_escape
|
||||
if owner == player_name then
|
||||
formspec = "size[8,8]" ..
|
||||
"field[0.5,1;7.5,0;title;Title:;" ..
|
||||
minetest.formspec_escape(title) .. "]" ..
|
||||
"textarea[0.5,1.5;7.5,7;text;Contents:;" ..
|
||||
minetest.formspec_escape(text) .. "]" ..
|
||||
"button_exit[2.5,7.5;3,1;save;Save]"
|
||||
"field[0.5,1;7.5,0;title;" .. esc(S("Title:")) .. ";" ..
|
||||
esc(title) .. "]" ..
|
||||
"textarea[0.5,1.5;7.5,7;text;" .. esc(S("Contents:")) .. ";" ..
|
||||
esc(text) .. "]" ..
|
||||
"button_exit[2.5,7.5;3,1;save;" .. esc(S("Save")) .. "]"
|
||||
else
|
||||
formspec = "size[8,8]" ..
|
||||
"label[0.5,0.5;by " .. owner .. "]" ..
|
||||
"label[0.5,0.5;" .. esc(S("by @1", owner)) .. "]" ..
|
||||
"tablecolumns[color;text]" ..
|
||||
"tableoptions[background=#00000000;highlight=#00000000;border=false]" ..
|
||||
"table[0.4,0;7,0.5;title;#FFFF00," .. minetest.formspec_escape(title) .. "]" ..
|
||||
"table[0.4,0;7,0.5;title;#FFFF00," .. esc(title) .. "]" ..
|
||||
"textarea[0.5,1.5;7.5,7;;" ..
|
||||
minetest.formspec_escape(string ~= "" and string or text) .. ";]" ..
|
||||
"button[2.4,7.6;0.8,0.8;book_prev;<]" ..
|
||||
"label[3.2,7.7;Page " .. page .. " of " .. page_max .. "]" ..
|
||||
"label[3.2,7.7;" .. esc(S("Page @1 of @2", page, page_max)) .. "]" ..
|
||||
"button[4.9,7.6;0.8,0.8;book_next;>]"
|
||||
end
|
||||
|
||||
@ -108,7 +112,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
if #short_title > short_title_size + 3 then
|
||||
short_title = short_title:sub(1, short_title_size) .. "..."
|
||||
end
|
||||
data.description = "\""..short_title.."\" by "..data.owner
|
||||
data.description = S("\"@1\" by @2", short_title, data.owner)
|
||||
data.text = fields.text:sub(1, max_text_size)
|
||||
data.text = data.text:gsub("\r\n", "\n"):gsub("\r", "\n")
|
||||
data.page = 1
|
||||
@ -155,14 +159,14 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
end)
|
||||
|
||||
minetest.register_craftitem("default:book", {
|
||||
description = "Book",
|
||||
description = S("Book"),
|
||||
inventory_image = "default_book.png",
|
||||
groups = {book = 1, flammable = 3},
|
||||
on_use = book_on_use,
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:book_written", {
|
||||
description = "Book With Text",
|
||||
description = S("Book with Text"),
|
||||
inventory_image = "default_book_written.png",
|
||||
groups = {book = 1, not_in_creative_inventory = 1, flammable = 3},
|
||||
stack_max = 1,
|
||||
@ -199,7 +203,7 @@ minetest.register_on_craft(function(itemstack, player, old_craft_grid, craft_inv
|
||||
end)
|
||||
|
||||
minetest.register_craftitem("default:skeleton_key", {
|
||||
description = "Skeleton Key",
|
||||
description = S("Skeleton Key"),
|
||||
inventory_image = "default_key_skeleton.png",
|
||||
groups = {key = 1},
|
||||
on_use = function(itemstack, user, pointed_thing)
|
||||
@ -238,8 +242,8 @@ minetest.register_craftitem("default:skeleton_key", {
|
||||
local new_stack = ItemStack("default:key")
|
||||
local meta = new_stack:get_meta()
|
||||
meta:set_string("secret", secret)
|
||||
meta:set_string("description", "Key to "..user:get_player_name().."'s "
|
||||
..minetest.registered_nodes[node.name].description)
|
||||
meta:set_string("description", S("Key to @1's @2", user:get_player_name(),
|
||||
minetest.registered_nodes[node.name].description))
|
||||
|
||||
if itemstack:get_count() == 0 then
|
||||
itemstack = new_stack
|
||||
@ -255,93 +259,93 @@ minetest.register_craftitem("default:skeleton_key", {
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:coal_lump", {
|
||||
description = "Coal Lump",
|
||||
description = S("Coal Lump"),
|
||||
inventory_image = "default_coal_lump.png",
|
||||
groups = {coal = 1, flammable = 1}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:iron_lump", {
|
||||
description = "Iron Lump",
|
||||
inventory_image = "default_iron_lump.png",
|
||||
description = S("Iron Lump"),
|
||||
inventory_image = "default_iron_lump.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:copper_lump", {
|
||||
description = "Copper Lump",
|
||||
inventory_image = "default_copper_lump.png",
|
||||
description = S("Copper Lump"),
|
||||
inventory_image = "default_copper_lump.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:tin_lump", {
|
||||
description = "Tin Lump",
|
||||
inventory_image = "default_tin_lump.png",
|
||||
description = S("Tin Lump"),
|
||||
inventory_image = "default_tin_lump.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:mese_crystal", {
|
||||
description = "Mese Crystal",
|
||||
description = S("Mese Crystal"),
|
||||
inventory_image = "default_mese_crystal.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:gold_lump", {
|
||||
description = "Gold Lump",
|
||||
inventory_image = "default_gold_lump.png",
|
||||
description = S("Gold Lump"),
|
||||
inventory_image = "default_gold_lump.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:diamond", {
|
||||
description = "Diamond",
|
||||
description = S("Diamond"),
|
||||
inventory_image = "default_diamond.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:clay_lump", {
|
||||
description = "Clay Lump",
|
||||
description = S("Clay Lump"),
|
||||
inventory_image = "default_clay_lump.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:steel_ingot", {
|
||||
description = "Steel Ingot",
|
||||
inventory_image = "default_steel_ingot.png",
|
||||
description = S("Steel Ingot"),
|
||||
inventory_image = "default_steel_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:copper_ingot", {
|
||||
description = "Copper Ingot",
|
||||
inventory_image = "default_copper_ingot.png",
|
||||
description = S("Copper Ingot"),
|
||||
inventory_image = "default_copper_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:tin_ingot", {
|
||||
description = "Tin Ingot",
|
||||
inventory_image = "default_tin_ingot.png",
|
||||
description = S("Tin Ingot"),
|
||||
inventory_image = "default_tin_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:bronze_ingot", {
|
||||
description = "Bronze Ingot",
|
||||
inventory_image = "default_bronze_ingot.png",
|
||||
description = S("Bronze Ingot"),
|
||||
inventory_image = "default_bronze_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:gold_ingot", {
|
||||
description = "Gold Ingot",
|
||||
description = S("Gold Ingot"),
|
||||
inventory_image = "default_gold_ingot.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:mese_crystal_fragment", {
|
||||
description = "Mese Crystal Fragment",
|
||||
description = S("Mese Crystal Fragment"),
|
||||
inventory_image = "default_mese_crystal_fragment.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:clay_brick", {
|
||||
description = "Clay Brick",
|
||||
description = S("Clay Brick"),
|
||||
inventory_image = "default_clay_brick.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:obsidian_shard", {
|
||||
description = "Obsidian Shard",
|
||||
description = S("Obsidian Shard"),
|
||||
inventory_image = "default_obsidian_shard.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:flint", {
|
||||
description = "Flint",
|
||||
description = S("Flint"),
|
||||
inventory_image = "default_flint.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:blueberries", {
|
||||
description = "Blueberries",
|
||||
description = S("Blueberries"),
|
||||
inventory_image = "default_blueberries.png",
|
||||
groups = {food_blueberries = 1, food_berry = 1},
|
||||
on_use = minetest.item_eat(2),
|
||||
|
@ -1 +0,0 @@
|
||||
player_api?
|
@ -273,6 +273,7 @@ end
|
||||
--
|
||||
-- Fence registration helper
|
||||
--
|
||||
local fence_collision_extra = minetest.settings:get_bool("enable_fence_tall") and 3/8 or 0
|
||||
|
||||
function default.register_fence(name, def)
|
||||
minetest.register_craft({
|
||||
@ -291,17 +292,27 @@ function default.register_fence(name, def)
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "connected",
|
||||
fixed = {{-1/8, -1/2, -1/8, 1/8, 1/2, 1/8}},
|
||||
fixed = {-1/8, -1/2, -1/8, 1/8, 1/2, 1/8},
|
||||
-- connect_top =
|
||||
-- connect_bottom =
|
||||
connect_front = {{-1/16,3/16,-1/2,1/16,5/16,-1/8},
|
||||
{-1/16,-5/16,-1/2,1/16,-3/16,-1/8}},
|
||||
connect_left = {{-1/2,3/16,-1/16,-1/8,5/16,1/16},
|
||||
{-1/2,-5/16,-1/16,-1/8,-3/16,1/16}},
|
||||
connect_back = {{-1/16,3/16,1/8,1/16,5/16,1/2},
|
||||
{-1/16,-5/16,1/8,1/16,-3/16,1/2}},
|
||||
connect_right = {{1/8,3/16,-1/16,1/2,5/16,1/16},
|
||||
{1/8,-5/16,-1/16,1/2,-3/16,1/16}},
|
||||
connect_front = {{-1/16, 3/16, -1/2, 1/16, 5/16, -1/8 },
|
||||
{-1/16, -5/16, -1/2, 1/16, -3/16, -1/8 }},
|
||||
connect_left = {{-1/2, 3/16, -1/16, -1/8, 5/16, 1/16},
|
||||
{-1/2, -5/16, -1/16, -1/8, -3/16, 1/16}},
|
||||
connect_back = {{-1/16, 3/16, 1/8, 1/16, 5/16, 1/2 },
|
||||
{-1/16, -5/16, 1/8, 1/16, -3/16, 1/2 }},
|
||||
connect_right = {{ 1/8, 3/16, -1/16, 1/2, 5/16, 1/16},
|
||||
{ 1/8, -5/16, -1/16, 1/2, -3/16, 1/16}}
|
||||
},
|
||||
collision_box = {
|
||||
type = "connected",
|
||||
fixed = {-1/8, -1/2, -1/8, 1/8, 1/2 + fence_collision_extra, 1/8},
|
||||
-- connect_top =
|
||||
-- connect_bottom =
|
||||
connect_front = {-1/8, -1/2, -1/2, 1/8, 1/2 + fence_collision_extra, -1/8},
|
||||
connect_left = {-1/2, -1/2, -1/8, -1/8, 1/2 + fence_collision_extra, 1/8},
|
||||
connect_back = {-1/8, -1/2, 1/8, 1/8, 1/2 + fence_collision_extra, 1/2},
|
||||
connect_right = { 1/8, -1/2, -1/8, 1/2, 1/2 + fence_collision_extra, 1/8}
|
||||
},
|
||||
connects_to = {"group:fence", "group:wood", "group:tree", "group:wall"},
|
||||
inventory_image = fence_texture,
|
||||
@ -349,24 +360,28 @@ function default.register_fence_rail(name, def)
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "connected",
|
||||
fixed = {
|
||||
{-1/16, 3/16, -1/16, 1/16, 5/16, 1/16},
|
||||
{-1/16, -3/16, -1/16, 1/16, -5/16, 1/16}
|
||||
},
|
||||
fixed = {{-1/16, 3/16, -1/16, 1/16, 5/16, 1/16},
|
||||
{-1/16, -3/16, -1/16, 1/16, -5/16, 1/16}},
|
||||
-- connect_top =
|
||||
-- connect_bottom =
|
||||
connect_front = {
|
||||
{-1/16, 3/16, -1/2, 1/16, 5/16, -1/16},
|
||||
{-1/16, -5/16, -1/2, 1/16, -3/16, -1/16}},
|
||||
connect_left = {
|
||||
{-1/2, 3/16, -1/16, -1/16, 5/16, 1/16},
|
||||
{-1/2, -5/16, -1/16, -1/16, -3/16, 1/16}},
|
||||
connect_back = {
|
||||
{-1/16, 3/16, 1/16, 1/16, 5/16, 1/2},
|
||||
{-1/16, -5/16, 1/16, 1/16, -3/16, 1/2}},
|
||||
connect_right = {
|
||||
{1/16, 3/16, -1/16, 1/2, 5/16, 1/16},
|
||||
{1/16, -5/16, -1/16, 1/2, -3/16, 1/16}},
|
||||
connect_front = {{-1/16, 3/16, -1/2, 1/16, 5/16, -1/16},
|
||||
{-1/16, -5/16, -1/2, 1/16, -3/16, -1/16}},
|
||||
connect_left = {{-1/2, 3/16, -1/16, -1/16, 5/16, 1/16},
|
||||
{-1/2, -5/16, -1/16, -1/16, -3/16, 1/16}},
|
||||
connect_back = {{-1/16, 3/16, 1/16, 1/16, 5/16, 1/2 },
|
||||
{-1/16, -5/16, 1/16, 1/16, -3/16, 1/2 }},
|
||||
connect_right = {{ 1/16, 3/16, -1/16, 1/2, 5/16, 1/16},
|
||||
{ 1/16, -5/16, -1/16, 1/2, -3/16, 1/16}}
|
||||
},
|
||||
collision_box = {
|
||||
type = "connected",
|
||||
fixed = {-1/8, -1/2, -1/8, 1/8, 1/2 + fence_collision_extra, 1/8},
|
||||
-- connect_top =
|
||||
-- connect_bottom =
|
||||
connect_front = {-1/8, -1/2, -1/2, 1/8, 1/2 + fence_collision_extra, -1/8},
|
||||
connect_left = {-1/2, -1/2, -1/8, -1/8, 1/2 + fence_collision_extra, 1/8},
|
||||
connect_back = {-1/8, -1/2, 1/8, 1/8, 1/2 + fence_collision_extra, 1/2},
|
||||
connect_right = { 1/8, -1/2, -1/8, 1/2, 1/2 + fence_collision_extra, 1/8}
|
||||
},
|
||||
connects_to = {"group:fence", "group:wall"},
|
||||
inventory_image = fence_rail_texture,
|
||||
@ -399,7 +414,7 @@ end
|
||||
-- Prevent decay of placed leaves
|
||||
|
||||
default.after_place_leaves = function(pos, placer, itemstack, pointed_thing)
|
||||
if placer and placer:is_player() and not placer:get_player_control().sneak then
|
||||
if placer and placer:is_player() then
|
||||
local node = minetest.get_node(pos)
|
||||
node.param2 = 1
|
||||
minetest.set_node(pos, node)
|
||||
@ -412,7 +427,7 @@ local function leafdecay_after_destruct(pos, oldnode, def)
|
||||
vector.add(pos, def.radius), def.leaves)) do
|
||||
local node = minetest.get_node(v)
|
||||
local timer = minetest.get_node_timer(v)
|
||||
if node.param2 == 0 and not timer:is_started() then
|
||||
if node.param2 ~= 1 and not timer:is_started() then
|
||||
timer:start(math.random(20, 120) / 10)
|
||||
end
|
||||
end
|
||||
@ -477,7 +492,6 @@ minetest.register_abm({
|
||||
neighbors = {
|
||||
"air",
|
||||
"group:grass",
|
||||
"group:dry_grass",
|
||||
"default:snow",
|
||||
},
|
||||
interval = 6,
|
||||
@ -504,11 +518,8 @@ minetest.register_abm({
|
||||
-- Snow check is cheapest, so comes first
|
||||
if name == "default:snow" then
|
||||
minetest.set_node(pos, {name = "default:dirt_with_snow"})
|
||||
-- Most likely case first
|
||||
elseif minetest.get_item_group(name, "grass") ~= 0 then
|
||||
minetest.set_node(pos, {name = "default:dirt_with_grass"})
|
||||
elseif minetest.get_item_group(name, "dry_grass") ~= 0 then
|
||||
minetest.set_node(pos, {name = "default:dirt_with_dry_grass"})
|
||||
end
|
||||
end
|
||||
})
|
||||
@ -520,7 +531,7 @@ minetest.register_abm({
|
||||
|
||||
minetest.register_abm({
|
||||
label = "Grass covered",
|
||||
nodenames = {"group:spreading_dirt_type"},
|
||||
nodenames = {"group:spreading_dirt_type", "default:dry_dirt_with_dry_grass"},
|
||||
interval = 8,
|
||||
chance = 50,
|
||||
catch_up = false,
|
||||
@ -531,7 +542,11 @@ minetest.register_abm({
|
||||
if name ~= "ignore" and nodedef and not ((nodedef.sunlight_propagates or
|
||||
nodedef.paramtype == "light") and
|
||||
nodedef.liquidtype == "none") then
|
||||
minetest.set_node(pos, {name = "default:dirt"})
|
||||
if node.name == "default:dry_dirt_with_dry_grass" then
|
||||
minetest.set_node(pos, {name = "default:dry_dirt"})
|
||||
else
|
||||
minetest.set_node(pos, {name = "default:dirt"})
|
||||
end
|
||||
end
|
||||
end
|
||||
})
|
||||
@ -541,22 +556,27 @@ minetest.register_abm({
|
||||
-- Moss growth on cobble near water
|
||||
--
|
||||
|
||||
local moss_correspondences = {
|
||||
["default:cobble"] = "default:mossycobble",
|
||||
["stairs:slab_cobble"] = "stairs:slab_mossycobble",
|
||||
["stairs:stair_cobble"] = "stairs:stair_mossycobble",
|
||||
["stairs:stair_inner_cobble"] = "stairs:stair_inner_mossycobble",
|
||||
["stairs:stair_outer_cobble"] = "stairs:stair_outer_mossycobble",
|
||||
["walls:cobble"] = "walls:mossycobble",
|
||||
}
|
||||
minetest.register_abm({
|
||||
label = "Moss growth",
|
||||
nodenames = {"default:cobble", "stairs:slab_cobble", "stairs:stair_cobble", "walls:cobble"},
|
||||
nodenames = {"default:cobble", "stairs:slab_cobble", "stairs:stair_cobble",
|
||||
"stairs:stair_inner_cobble", "stairs:stair_outer_cobble",
|
||||
"walls:cobble"},
|
||||
neighbors = {"group:water"},
|
||||
interval = 16,
|
||||
chance = 200,
|
||||
catch_up = false,
|
||||
action = function(pos, node)
|
||||
if node.name == "default:cobble" then
|
||||
minetest.set_node(pos, {name = "default:mossycobble"})
|
||||
elseif node.name == "stairs:slab_cobble" then
|
||||
minetest.set_node(pos, {name = "stairs:slab_mossycobble", param2 = node.param2})
|
||||
elseif node.name == "stairs:stair_cobble" then
|
||||
minetest.set_node(pos, {name = "stairs:stair_mossycobble", param2 = node.param2})
|
||||
elseif node.name == "walls:cobble" then
|
||||
minetest.set_node(pos, {name = "walls:mossycobble", param2 = node.param2})
|
||||
node.name = moss_correspondences[node.name]
|
||||
if node.name then
|
||||
minetest.set_node(pos, node)
|
||||
end
|
||||
end
|
||||
})
|
||||
@ -568,7 +588,7 @@ minetest.register_abm({
|
||||
--
|
||||
|
||||
function default.can_interact_with_node(player, pos)
|
||||
if player then
|
||||
if player and player:is_player() then
|
||||
if minetest.check_player_privs(player, "protection_bypass") then
|
||||
return true
|
||||
end
|
||||
|
@ -1,3 +1,7 @@
|
||||
-- default/furnace.lua
|
||||
|
||||
-- support for MT game translation.
|
||||
local S = default.get_translator
|
||||
|
||||
--
|
||||
-- Formspecs
|
||||
@ -8,7 +12,7 @@ function default.get_furnace_active_formspec(fuel_percent, item_percent)
|
||||
"list[context;src;2.75,0.5;1,1;]"..
|
||||
"list[context;fuel;2.75,2.5;1,1;]"..
|
||||
"image[2.75,1.5;1,1;default_furnace_fire_bg.png^[lowpart:"..
|
||||
(100-fuel_percent)..":default_furnace_fire_fg.png]"..
|
||||
(fuel_percent)..":default_furnace_fire_fg.png]"..
|
||||
"image[3.75,1.5;1,1;gui_furnace_arrow_bg.png^[lowpart:"..
|
||||
(item_percent)..":gui_furnace_arrow_fg.png^[transformR270]"..
|
||||
"list[context;dst;4.75,0.96;2,2;]"..
|
||||
@ -60,7 +64,7 @@ local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
||||
if listname == "fuel" then
|
||||
if minetest.get_craft_result({method="fuel", width=1, items={stack}}).time ~= 0 then
|
||||
if inv:is_empty("src") then
|
||||
meta:set_string("infotext", "Furnace is empty")
|
||||
meta:set_string("infotext", S("Furnace is empty"))
|
||||
end
|
||||
return stack:get_count()
|
||||
else
|
||||
@ -98,7 +102,7 @@ end
|
||||
|
||||
local function furnace_node_timer(pos, elapsed)
|
||||
--
|
||||
-- Inizialize metadata
|
||||
-- Initialize metadata
|
||||
--
|
||||
local meta = minetest.get_meta(pos)
|
||||
local fuel_time = meta:get_float("fuel_time") or 0
|
||||
@ -107,6 +111,7 @@ local function furnace_node_timer(pos, elapsed)
|
||||
|
||||
local inv = meta:get_inventory()
|
||||
local srclist, fuellist
|
||||
local dst_full = false
|
||||
|
||||
local cookable, cooked
|
||||
local fuel
|
||||
@ -146,6 +151,8 @@ local function furnace_node_timer(pos, elapsed)
|
||||
inv:set_stack("src", 1, aftercooked.items[1])
|
||||
src_time = src_time - cooked.time
|
||||
update = true
|
||||
else
|
||||
dst_full = true
|
||||
end
|
||||
else
|
||||
-- Item could not be cooked: probably missing fuel
|
||||
@ -166,6 +173,16 @@ local function furnace_node_timer(pos, elapsed)
|
||||
else
|
||||
-- Take fuel from fuel list
|
||||
inv:set_stack("fuel", 1, afterfuel.items[1])
|
||||
-- Put replacements in dst list or drop them on the furnace.
|
||||
local replacements = fuel.replacements
|
||||
if replacements[1] then
|
||||
local leftover = inv:add_item("dst", replacements[1])
|
||||
if not leftover:is_empty() then
|
||||
local above = vector.new(pos.x, pos.y + 1, pos.z)
|
||||
local drop_pos = minetest.find_node_near(above, 1, {"air"}) or above
|
||||
minetest.item_drop(replacements[1], nil, drop_pos)
|
||||
end
|
||||
end
|
||||
update = true
|
||||
fuel_totaltime = fuel.time + (fuel_totaltime - fuel_time)
|
||||
end
|
||||
@ -183,7 +200,7 @@ local function furnace_node_timer(pos, elapsed)
|
||||
if fuel and fuel_totaltime > fuel.time then
|
||||
fuel_totaltime = fuel.time
|
||||
end
|
||||
if srclist[1]:is_empty() then
|
||||
if srclist and srclist[1]:is_empty() then
|
||||
src_time = 0
|
||||
end
|
||||
|
||||
@ -195,34 +212,34 @@ local function furnace_node_timer(pos, elapsed)
|
||||
local item_percent = 0
|
||||
if cookable then
|
||||
item_percent = math.floor(src_time / cooked.time * 100)
|
||||
if item_percent > 100 then
|
||||
item_state = "100% (output full)"
|
||||
if dst_full then
|
||||
item_state = S("100% (output full)")
|
||||
else
|
||||
item_state = item_percent .. "%"
|
||||
item_state = S("@1%", item_percent)
|
||||
end
|
||||
else
|
||||
if srclist[1]:is_empty() then
|
||||
item_state = "Empty"
|
||||
if srclist and not srclist[1]:is_empty() then
|
||||
item_state = S("Not cookable")
|
||||
else
|
||||
item_state = "Not cookable"
|
||||
item_state = S("Empty")
|
||||
end
|
||||
end
|
||||
|
||||
local fuel_state = "Empty"
|
||||
local active = "inactive"
|
||||
local fuel_state = S("Empty")
|
||||
local active = false
|
||||
local result = false
|
||||
|
||||
if fuel_totaltime ~= 0 then
|
||||
active = "active"
|
||||
local fuel_percent = math.floor(fuel_time / fuel_totaltime * 100)
|
||||
fuel_state = fuel_percent .. "%"
|
||||
active = true
|
||||
local fuel_percent = 100 - math.floor(fuel_time / fuel_totaltime * 100)
|
||||
fuel_state = S("@1%", fuel_percent)
|
||||
formspec = default.get_furnace_active_formspec(fuel_percent, item_percent)
|
||||
swap_node(pos, "default:furnace_active")
|
||||
-- make sure timer restarts automatically
|
||||
result = true
|
||||
else
|
||||
if not fuellist[1]:is_empty() then
|
||||
fuel_state = "0%"
|
||||
if fuellist and not fuellist[1]:is_empty() then
|
||||
fuel_state = S("@1%", 0)
|
||||
end
|
||||
formspec = default.get_furnace_inactive_formspec()
|
||||
swap_node(pos, "default:furnace")
|
||||
@ -230,8 +247,14 @@ local function furnace_node_timer(pos, elapsed)
|
||||
minetest.get_node_timer(pos):stop()
|
||||
end
|
||||
|
||||
local infotext = "Furnace " .. active .. "\n(Item: " .. item_state ..
|
||||
"; Fuel: " .. fuel_state .. ")"
|
||||
|
||||
local infotext
|
||||
if active then
|
||||
infotext = S("Furnace active")
|
||||
else
|
||||
infotext = S("Furnace inactive")
|
||||
end
|
||||
infotext = infotext .. "\n" .. S("(Item: @1; Fuel: @2)", item_state, fuel_state)
|
||||
|
||||
--
|
||||
-- Set meta values
|
||||
@ -250,7 +273,7 @@ end
|
||||
--
|
||||
|
||||
minetest.register_node("default:furnace", {
|
||||
description = "Furnace",
|
||||
description = S("Furnace"),
|
||||
tiles = {
|
||||
"default_furnace_top.png", "default_furnace_bottom.png",
|
||||
"default_furnace_side.png", "default_furnace_side.png",
|
||||
@ -268,11 +291,11 @@ minetest.register_node("default:furnace", {
|
||||
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("formspec", default.get_furnace_inactive_formspec())
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size('src', 1)
|
||||
inv:set_size('fuel', 1)
|
||||
inv:set_size('dst', 4)
|
||||
furnace_node_timer(pos, 0)
|
||||
end,
|
||||
|
||||
on_metadata_inventory_move = function(pos)
|
||||
@ -298,7 +321,7 @@ minetest.register_node("default:furnace", {
|
||||
})
|
||||
|
||||
minetest.register_node("default:furnace_active", {
|
||||
description = "Furnace",
|
||||
description = S("Furnace"),
|
||||
tiles = {
|
||||
"default_furnace_top.png", "default_furnace_bottom.png",
|
||||
"default_furnace_side.png", "default_furnace_side.png",
|
||||
|
@ -3,16 +3,21 @@
|
||||
|
||||
-- The API documentation in here was moved into game_api.txt
|
||||
|
||||
-- Load support for MT game translation.
|
||||
local S = minetest.get_translator("default")
|
||||
|
||||
-- Definitions made by this mod that other mods can use too
|
||||
default = {}
|
||||
|
||||
default.LIGHT_MAX = 14
|
||||
default.get_translator = S
|
||||
|
||||
-- GUI related stuff
|
||||
minetest.register_on_joinplayer(function(player)
|
||||
player:set_formspec_prepend([[
|
||||
bgcolor[#080808BB;true]
|
||||
background[5,5;1,1;gui_formbg.png;true]
|
||||
background9[5,5;1,1;gui_formbg.png;true;10]
|
||||
listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF] ]])
|
||||
end)
|
||||
|
||||
|
@ -45,5 +45,5 @@ default.register_chest = default.chest.register_chest
|
||||
function default.intersects_protection(minp, maxp, player_name, interval)
|
||||
minetest.log("warning", "default.intersects_protection() is " ..
|
||||
"deprecated, use minetest.is_area_protected() instead.")
|
||||
minetest.is_area_protected(minp, maxp, player_name, interval)
|
||||
return minetest.is_area_protected(minp, maxp, player_name, interval)
|
||||
end
|
||||
|
211
mods/default/locale/default.de.tr
Normal file
@ -0,0 +1,211 @@
|
||||
# textdomain: default
|
||||
Locked Chest=Abgeschlossene Truhe
|
||||
Locked Chest (owned by @1)=Abgeschlossene Truhe (Eigentum von @1)
|
||||
You do not own this chest.=Ihnen gehört diese Truhe nicht.
|
||||
a locked chest=eine abgeschlossene Truhe
|
||||
Chest=Truhe
|
||||
Stick=Stock
|
||||
Paper=Papier
|
||||
"@1" by @2=„@1“ von @2
|
||||
Book=Buch
|
||||
Book with Text=Buch mit Text
|
||||
Skeleton Key=Skelettschlüssel
|
||||
Key to @1's @2=Schlüssel für @2 von @1
|
||||
Coal Lump=Kohleklumpen
|
||||
Iron Lump=Eisenklumpen
|
||||
Copper Lump=Kupferklumpen
|
||||
Tin Lump=Zinnklumpen
|
||||
Mese Crystal=Mesekristall
|
||||
Gold Lump=Goldklumpen
|
||||
Diamond=Diamant
|
||||
Clay Lump=Tonklumpen
|
||||
Steel Ingot=Stahlbarren
|
||||
Copper Ingot=Kupferbarren
|
||||
Tin Ingot=Zinnbarren
|
||||
Bronze Ingot=Bronzebarren
|
||||
Gold Ingot=Goldbarren
|
||||
Mese Crystal Fragment=Mesekristallfragment
|
||||
Clay Brick=Tonziegel
|
||||
Obsidian Shard=Obsidianscherbe
|
||||
Flint=Feuerstein
|
||||
Blueberries=Blaubeeren
|
||||
Furnace is empty=Ofen ist leer
|
||||
100% (output full)=100% (Ausgabe voll)
|
||||
@1%=@1%
|
||||
Empty=Leer
|
||||
Not cookable=Nicht kochbar
|
||||
Furnace active=Ofen aktiv
|
||||
Furnace inactive=Ofen inaktiv
|
||||
(Item: @1; Fuel: @2)=(Gegenstand: @1; Brennstoff: @2)
|
||||
Furnace=Ofen
|
||||
Stone=Stein
|
||||
Cobblestone=Kopfsteinpflaster
|
||||
Stone Brick=Steinziegel
|
||||
Stone Block=Steinblock
|
||||
Mossy Cobblestone=Mosiges Kopfsteinpflaster
|
||||
Desert Stone=Wüstenstein
|
||||
Desert Cobblestone=Wüstenkopfsteinpflaster
|
||||
Desert Stone Brick=Wüstensteinziegel
|
||||
Desert Stone Block=Wüstensteinblock
|
||||
Sandstone=Sandstein
|
||||
Sandstone Brick=Sandsteinziegel
|
||||
Sandstone Block=Sandsteinblock
|
||||
Desert Sandstone=Wüstensandstein
|
||||
Desert Sandstone Brick=Wüstensandsteinziegel
|
||||
Desert Sandstone Block=Wüstensandsteinblock
|
||||
Silver Sandstone=Silbersandstein
|
||||
Silver Sandstone Brick=Silbersandsteinziegel
|
||||
Silver Sandstone Block=Silbersandsteinblock
|
||||
Obsidian=Obsidian
|
||||
Obsidian Brick=Obsidianziegel
|
||||
Obsidian Block=Obsidianblock
|
||||
Dirt=Erde
|
||||
Dirt with Grass=Erde mit Gras
|
||||
Dirt with Grass and Footsteps=Erde mit Gras und Fußstapfen
|
||||
Dirt with Dry Grass=Erde mit trockenem Gras
|
||||
Dirt with Snow=Erde mit Schnee
|
||||
Dirt with Rainforest Litter=Erde mit Regenwaldboden
|
||||
Dirt with Coniferous Litter=Erde mit Nadelwaldboden
|
||||
Dry Dirt=Trockene Erde
|
||||
Dry Dirt with Dry Grass=Trockene Erde mit trockenem Gras
|
||||
Permafrost=Permafrost
|
||||
Permafrost with Stones=Permafrost mit Steinen
|
||||
Permafrost with Moss=Permafrost mit Moos
|
||||
Sand=Sand
|
||||
Desert Sand=Wüstensand
|
||||
Silver Sand=Silbersand
|
||||
Gravel=Kies
|
||||
Clay=Ton
|
||||
Snow=Schnee
|
||||
Snow Block=Schneeblock
|
||||
Ice=Eis
|
||||
Cave Ice=Höhleneis
|
||||
Apple Tree=Apfelbaum
|
||||
Apple Wood Planks=Apfelbaumplanken
|
||||
Apple Tree Sapling=Apfelbaumsetzling
|
||||
Apple Tree Leaves=Apfelbaumblätter
|
||||
Apple=Apfel
|
||||
Apple Marker=Apfelmarkierung
|
||||
Jungle Tree=Dschungelbaum
|
||||
Jungle Wood Planks=Dschungelholzplanken
|
||||
Jungle Tree Leaves=Dschungelbaumblätter
|
||||
Jungle Tree Sapling=Dschungelbaumsetzling
|
||||
Emergent Jungle Tree Sapling=Hervorstehender Dschungelbaumsetzling
|
||||
Pine Tree=Kiefernbaum
|
||||
Pine Wood Planks=Kiefernholzplanken
|
||||
Pine Needles=Kiefernnadeln
|
||||
Pine Tree Sapling=Kiefernbaumsetzling
|
||||
Acacia Tree=Akazienbaum
|
||||
Acacia Wood Planks=Akazienholzplanken
|
||||
Acacia Tree Leaves=Akazienbaumblätter
|
||||
Acacia Tree Sapling=Akazienbaumsetzling
|
||||
Aspen Tree=Espenbaum
|
||||
Aspen Wood Planks=Espenholzplanken
|
||||
Aspen Tree Leaves=Espenbaumblätter
|
||||
Aspen Tree Sapling=Esepenbaumsetzling
|
||||
Coal Ore=Kohleerz
|
||||
Coal Block=Kohleblock
|
||||
Iron Ore=Eisenerz
|
||||
Steel Block=Stahlblock
|
||||
Copper Ore=Kupfererz
|
||||
Copper Block=Kupferblock
|
||||
Tin Ore=Zinnerz
|
||||
Tin Block=Zinnblock
|
||||
Bronze Block=Bronzeblock
|
||||
Mese Ore=Meseerz
|
||||
Mese Block=Meseblock
|
||||
Gold Ore=Golderz
|
||||
Gold Block=Goldblock
|
||||
Diamond Ore=Diamanterz
|
||||
Diamond Block=Diamantblock
|
||||
Cactus=Kaktus
|
||||
Large Cactus Seedling=Großer Kaktussämling
|
||||
Papyrus=Papyrus
|
||||
Dry Shrub=Trockener Busch
|
||||
Jungle Grass=Dschungelgras
|
||||
Grass=Gras
|
||||
Dry Grass=Trockenes Gras
|
||||
Fern=Farn
|
||||
Marram Grass=Dünengras
|
||||
Bush Stem=Buschstamm
|
||||
Bush Leaves=Buschblätter
|
||||
Bush Sapling=Buschsetzling
|
||||
Blueberry Bush Leaves with Berries=Blaubeerbuschblätter mit Beeren
|
||||
Blueberry Bush Leaves=Blaubeerbuschblätter
|
||||
Blueberry Bush Sapling=Blaubeerbuschsetzling
|
||||
Acacia Bush Stem=Akazienbuschstamm
|
||||
Acacia Bush Leaves=Akazienbuschblätter
|
||||
Acacia Bush Sapling=Akazienbuschsetzling
|
||||
Pine Bush Stem=Kiefernbuschstamm
|
||||
Pine Bush Needles=Kiefernbuschnadeln
|
||||
Pine Bush Sapling=Kiefernbuschsetzling
|
||||
Kelp=Seetang
|
||||
Green Coral=Grüne Koralle
|
||||
Pink Coral=Rosa Koralle
|
||||
Cyan Coral=Türkise Koralle
|
||||
Brown Coral=Braune Koralle
|
||||
Orange Coral=Orange Koralle
|
||||
Coral Skeleton=Korallenskelett
|
||||
Water Source=Wasserquelle
|
||||
Flowing Water=Fließendes Wasser
|
||||
River Water Source=Flusswasserquelle
|
||||
Flowing River Water=Fließendes Flusswasser
|
||||
Lava Source=Lavaquelle
|
||||
Flowing Lava=Fließende Lava
|
||||
Empty Bookshelf=Leeres Bücherregal
|
||||
Bookshelf (@1 written, @2 empty books)=Bücherregal (@1 beschriebene, @2 leere Bücher)
|
||||
Bookshelf=Bücherregal
|
||||
Text too long=Text zu lang
|
||||
Wooden Sign=Holzschild
|
||||
Steel Sign=Stahlschild
|
||||
Wooden Ladder=Holzleiter
|
||||
Steel Ladder=Stahlleiter
|
||||
Apple Wood Fence=Apfelholzzaun
|
||||
Acacia Wood Fence=Akazienholzzaun
|
||||
Jungle Wood Fence=Dschungelholzzaun
|
||||
Pine Wood Fence=Kiefernholzzaun
|
||||
Aspen Wood Fence=Espenholzzaun
|
||||
Apple Wood Fence Rail=Apfelholzzaungeländer
|
||||
Acacia Wood Fence Rail=Akazienholzzaungeländer
|
||||
Jungle Wood Fence Rail=Dschungelholzzaungeländer
|
||||
Pine Wood Fence Rail=Kiefernholzzaungeländer
|
||||
Aspen Wood Fence Rail=Espenholzzaungeländer
|
||||
Glass=Glas
|
||||
Obsidian Glass=Obsidianglas
|
||||
Brick Block=Ziegelblock
|
||||
Mese Lamp=Meselampe
|
||||
Mese Post Light=Mesestandlampe
|
||||
Cloud=Wolke
|
||||
Wooden Pickaxe=Holzspitzhacke
|
||||
Stone Pickaxe=Steinspitzhacke
|
||||
Bronze Pickaxe=Bronzespitzhacke
|
||||
Steel Pickaxe=Stahlspitzhacke
|
||||
Mese Pickaxe=Mesespitzhacke
|
||||
Diamond Pickaxe=Diamantspitzhacke
|
||||
Wooden Shovel=Holzschaufel
|
||||
Stone Shovel=Steinschaufel
|
||||
Bronze Shovel=Bronzeschaufel
|
||||
Steel Shovel=Stahlschaufel
|
||||
Mese Shovel=Meseschaufel
|
||||
Diamond Shovel=Diamantschaufel
|
||||
Wooden Axe=Holzaxt
|
||||
Stone Axe=Steinaxt
|
||||
Bronze Axe=Bronzeaxt
|
||||
Steel Axe=Stahlaxt
|
||||
Mese Axe=Meseaxt
|
||||
Diamond Axe=Diamantaxt
|
||||
Wooden Sword=Holzschwert
|
||||
Stone Sword=Steinschwert
|
||||
Bronze Sword=Bronzeschwert
|
||||
Steel Sword=Stahlschwert
|
||||
Mese Sword=Meseschwert
|
||||
Diamond Sword=Diamantschwert
|
||||
Key=Schlüssel
|
||||
Torch=Fackel
|
||||
@1 will intersect protection on growth.=@1 wird bei Wachstum mit geschützter Zone überlappen.
|
||||
Title:=Titel:
|
||||
Contents:=Inhalt:
|
||||
Save=Speichern
|
||||
by @1=von @1
|
||||
Page @1 of @2=Seite @1 von @2
|
||||
"@1"=„@1“
|
211
mods/default/locale/default.es.tr
Normal file
@ -0,0 +1,211 @@
|
||||
# textdomain: default
|
||||
Locked Chest=Cofre cerrado
|
||||
Locked Chest (owned by @1)=Cofre cerrado (propiedad de @1)
|
||||
You do not own this chest.=Este cofre no te pertenece.
|
||||
a locked chest=un cofre cerrado
|
||||
Chest=Cofre
|
||||
Stick=Palo
|
||||
Paper=Papel
|
||||
"@1" by @2="@1" por @2
|
||||
Book=Libro
|
||||
Book with Text=Libro escrito
|
||||
Skeleton Key=Llave esqueleto
|
||||
Key to @1's @2=Llave para @2 de @1
|
||||
Coal Lump=Fragmento de carbón
|
||||
Iron Lump=Pepita de hierro
|
||||
Copper Lump=Pepita de cobre
|
||||
Tin Lump=Pepita de estaño
|
||||
Mese Crystal=Cristal de mese
|
||||
Gold Lump=Pepita de oro
|
||||
Diamond=Diamante
|
||||
Clay Lump=Fragmento de arcilla
|
||||
Steel Ingot=Lingote de acero
|
||||
Copper Ingot=Lingote de cobre
|
||||
Tin Ingot=Lingote de estaño
|
||||
Bronze Ingot=Lingote de bronce
|
||||
Gold Ingot=Lingote de oro
|
||||
Mese Crystal Fragment=Fragmento de cristal de mese
|
||||
Clay Brick=Ladrillo de arcilla
|
||||
Obsidian Shard=Esquirla de obsidiana
|
||||
Flint=Pedernal
|
||||
Blueberries=Arándanos
|
||||
Furnace is empty=El horno está vacío
|
||||
100% (output full)=100% (salida completa)
|
||||
@1%=@1%
|
||||
Empty=Vacío
|
||||
Not cookable=No se puede cocinar
|
||||
Furnace active=Horno activado
|
||||
Furnace inactive=Horno desactivado
|
||||
(Item: @1; Fuel: @2)=(Objeto: @1; Combustible: @2)
|
||||
Furnace=Horno
|
||||
Stone=Piedra
|
||||
Cobblestone=Adoquín
|
||||
Stone Brick=Ladrillo de piedra
|
||||
Stone Block=Bloque de piedra
|
||||
Mossy Cobblestone=Adoquín musgoso
|
||||
Desert Stone=Piedra desértica
|
||||
Desert Cobblestone=Adoquín desértico
|
||||
Desert Stone Brick=Ladrillo de piedra desértica
|
||||
Desert Stone Block=Bloque de piedra desértica
|
||||
Sandstone=Piedra arenisca
|
||||
Sandstone Brick=Ladrillo de arenisca
|
||||
Sandstone Block=Bloque de arenisca
|
||||
Desert Sandstone=Piedra arenisca desértica
|
||||
Desert Sandstone Brick=Ladrillo de arenisca desértica
|
||||
Desert Sandstone Block=Bloque de arenisca deśertica
|
||||
Silver Sandstone=Piedra arenisca plateada
|
||||
Silver Sandstone Brick=Ladrillo de arenisca plateada
|
||||
Silver Sandstone Block=Bloque de arenisca plateada
|
||||
Obsidian=Obsidiana
|
||||
Obsidian Brick=Ladrillo de obsidiana
|
||||
Obsidian Block=Bloque de obsidiana
|
||||
Dirt=Tierra
|
||||
Dirt with Grass=Tierra con pasto
|
||||
Dirt with Grass and Footsteps=Tierra con pasto y pisadas
|
||||
Dirt with Dry Grass=Tierra con pasto seco
|
||||
Dirt with Snow=Tierra con nieve
|
||||
Dirt with Rainforest Litter=Tierra con hojarasca de selva tropical
|
||||
Dirt with Coniferous Litter=Tierra con hojarasca de coníferas
|
||||
Dry Dirt=Tierra Seca
|
||||
Dry Dirt with Dry Grass=Tierra seca con pasto seco
|
||||
Permafrost=Permafrost
|
||||
Permafrost with Stones=Permafrost pedregoso
|
||||
Permafrost with Moss=Permafrost musgoso
|
||||
Sand=Arena
|
||||
Desert Sand=Arena desértica
|
||||
Silver Sand=Arena plateada
|
||||
Gravel=Gravilla
|
||||
Clay=Arcilla
|
||||
Snow=Nieve
|
||||
Snow Block=Bloque de nieve
|
||||
Ice=Hielo
|
||||
Cave Ice=Hielo de cueva
|
||||
Apple Tree=Madera de manzano
|
||||
Apple Wood Planks=Tablas de manzano
|
||||
Apple Tree Sapling=Retoño de manzano
|
||||
Apple Tree Leaves=Hojas de manzano
|
||||
Apple=Manzana
|
||||
Apple Marker=Marcador de manzano
|
||||
Jungle Tree=Madera de árbol tropical
|
||||
Jungle Wood Planks=Tablas de madera tropical
|
||||
Jungle Tree Leaves=Hojas de árbol tropical
|
||||
Jungle Tree Sapling=Retoño de árbol tropical
|
||||
Emergent Jungle Tree Sapling=Retoño de árbol tropical
|
||||
Pine Tree=Madera de pino
|
||||
Pine Wood Planks=Tablas de pino
|
||||
Pine Needles=Agujas de pino
|
||||
Pine Tree Sapling=Retoño de pino
|
||||
Acacia Tree=Madera de acacia
|
||||
Acacia Wood Planks=Tablas de acacia
|
||||
Acacia Tree Leaves=Hojas de acacia
|
||||
Acacia Tree Sapling=Retoño de acacia
|
||||
Aspen Tree=Madera de álamo
|
||||
Aspen Wood Planks=Tablas de álamo
|
||||
Aspen Tree Leaves=Hojas de álamo
|
||||
Aspen Tree Sapling=Retoño de álamo
|
||||
Coal Ore=Mineral de carbón
|
||||
Coal Block=Bloque de carbón
|
||||
Iron Ore=Mineral de hierro
|
||||
Steel Block=Bloque de acero
|
||||
Copper Ore=Mineral de cobre
|
||||
Copper Block=Bloque de cobre
|
||||
Tin Ore=Mineral de estaño
|
||||
Tin Block=Bloque de estaño
|
||||
Bronze Block=Bloque de bronce
|
||||
Mese Ore=Mineral de mese
|
||||
Mese Block=Bloque de mese
|
||||
Gold Ore=Mineral de oro
|
||||
Gold Block=Bloque de oro
|
||||
Diamond Ore=Mineral de diamante
|
||||
Diamond Block=Bloque de diamante
|
||||
Cactus=Cáctus
|
||||
Large Cactus Seedling=Vástago grande de cactus
|
||||
Papyrus=Papiro
|
||||
Dry Shrub=Arbusto seco
|
||||
Jungle Grass=Pasto de jungla
|
||||
Grass=Pasto
|
||||
Dry Grass=Pasto seco
|
||||
Fern=Helecho
|
||||
Marram Grass=Carrizo
|
||||
Bush Stem=Tallo de arbusto
|
||||
Bush Leaves=Hojas de arbusto
|
||||
Bush Sapling=Retoño de arbusto
|
||||
Blueberry Bush Leaves with Berries=Hojas de arbusto de arándano con bayas
|
||||
Blueberry Bush Leaves=Hojas de arbusto de arándano
|
||||
Blueberry Bush Sapling=Retoño de arbusto de arándano
|
||||
Acacia Bush Stem=Tallo de arbusto de acacia
|
||||
Acacia Bush Leaves=Hojas de arbusto de acacia
|
||||
Acacia Bush Sapling=Retoño de arbusto de acacia
|
||||
Pine Bush Stem=Tallo de arbusto de pino
|
||||
Pine Bush Needles=Agujas de arbusto de pino
|
||||
Pine Bush Sapling=Retoño de arbusto de pino
|
||||
Kelp=Alga marina
|
||||
Green Coral=Coral verde
|
||||
Pink Coral=Coral rosa
|
||||
Cyan Coral=Coral cián
|
||||
Brown Coral=Coral café
|
||||
Orange Coral=Coral naranja
|
||||
Coral Skeleton=Esqueleto de coral
|
||||
Water Source=Fuente de agua
|
||||
Flowing Water=Fluído de agua
|
||||
River Water Source=Fuente de agua de río
|
||||
Flowing River Water=Fluído de agua de río
|
||||
Lava Source=Fuente de lava
|
||||
Flowing Lava=Fluído de lava
|
||||
Empty Bookshelf=Librería vacía
|
||||
Bookshelf (@1 written, @2 empty books)=Librería(@1 escritos, @2 libros en blanco)
|
||||
Bookshelf=Librería
|
||||
Text too long=Texto demasiado largo
|
||||
Wooden Sign=Cartel de madera
|
||||
Steel Sign=Cartel de acero
|
||||
Wooden Ladder=Escalera de madera
|
||||
Steel Ladder=Escalera de acero
|
||||
Apple Wood Fence=Cerca de manzano
|
||||
Acacia Wood Fence=Cerca de acacia
|
||||
Jungle Wood Fence=Cerca de madera tropical
|
||||
Pine Wood Fence=Cerca de pino
|
||||
Aspen Wood Fence=Cerca de álamo
|
||||
Apple Wood Fence Rail=Listones de manzano para cerca
|
||||
Acacia Wood Fence Rail=Listones de acacia para cerca
|
||||
Jungle Wood Fence Rail=Listones de madera tropical para cerca
|
||||
Pine Wood Fence Rail=Listones de pino para cerca
|
||||
Aspen Wood Fence Rail=Listones de álamo para cerca
|
||||
Glass=Vidrio
|
||||
Obsidian Glass=Vidrio de obsidiana
|
||||
Brick Block=Bloque de ladrillo
|
||||
Mese Lamp=Lámpara de mese
|
||||
Mese Post Light=Poste de luz de mese
|
||||
Cloud=Nube
|
||||
Wooden Pickaxe=Pico de madera
|
||||
Stone Pickaxe=Pico de piedra
|
||||
Bronze Pickaxe=Pico de bronce
|
||||
Steel Pickaxe=Pico de acero
|
||||
Mese Pickaxe=Pico de mese
|
||||
Diamond Pickaxe=Pico de diamante
|
||||
Wooden Shovel=Pala de madera
|
||||
Stone Shovel=Pala de piedra
|
||||
Bronze Shovel=Pala de bronce
|
||||
Steel Shovel=Pala de acero
|
||||
Mese Shovel=Pala de mese
|
||||
Diamond Shovel=Pala de diamante
|
||||
Wooden Axe=Hacha de madera
|
||||
Stone Axe=Hacha de piedra
|
||||
Bronze Axe=Hacha de bronce
|
||||
Steel Axe=Hacha de acero
|
||||
Mese Axe=Hacha de mese
|
||||
Diamond Axe=Hacha de diamante
|
||||
Wooden Sword=Espada de madera
|
||||
Stone Sword=Espada de piedra
|
||||
Bronze Sword=Espada de bronce
|
||||
Steel Sword=Espada de acero
|
||||
Mese Sword=Espada de mese
|
||||
Diamond Sword=Espada de diamante
|
||||
Key=Llave
|
||||
Torch=Antorcha
|
||||
@1 will intersect protection on growth.=@1 intersectará con protección cuando crezca.
|
||||
Title:=Título:
|
||||
Contents:=Contenidos:
|
||||
Save=Guardar
|
||||
by @1=por @1
|
||||
Page @1 of @2=Página @1 de @2
|
||||
"@1"="@1"
|
211
mods/default/locale/default.fr.tr
Normal file
@ -0,0 +1,211 @@
|
||||
# textdomain: default
|
||||
Locked Chest=Coffre verrouillé
|
||||
Locked Chest (owned by @1)=Coffre verrouillé (possédé par @1)
|
||||
You do not own this chest.=Ce coffre ne vous appartient pas.
|
||||
a locked chest=un coffre verrouillé
|
||||
Chest=Coffre
|
||||
Stick=Baton
|
||||
Paper=Papier
|
||||
"@1" by @2=« @1 » de @2
|
||||
Book=Livre
|
||||
Book with Text=Livre avec du texte
|
||||
Skeleton Key=Squelette
|
||||
Key to @1's @2=Clé pour @2 de @1
|
||||
Coal Lump=Morceau de charbon
|
||||
Iron Lump=Morceau de fer
|
||||
Copper Lump=Morceau de cuivre
|
||||
Tin Lump=Morceau d'étain
|
||||
Mese Crystal=Cristal de Mese
|
||||
Gold Lump=Morceau d'or
|
||||
Diamond=Diamant
|
||||
Clay Lump=Morceau d'argile
|
||||
Steel Ingot=Lingot d'acier
|
||||
Copper Ingot=Lingot de cuivre
|
||||
Tin Ingot=Lingot d'étain
|
||||
Bronze Ingot=Lingot de bronze
|
||||
Gold Ingot=Lingot d'or
|
||||
Mese Crystal Fragment=Fragment de cristal de Mese
|
||||
Clay Brick=Brique d'argile
|
||||
Obsidian Shard=Tesson d'obsidienne
|
||||
Flint=Silex
|
||||
Blueberries=Myrtille
|
||||
Furnace is empty=Le four est vide
|
||||
100% (output full)=100% (Sortie pleine)
|
||||
@1%=@1%
|
||||
Empty=Vide
|
||||
Not cookable=Ne se cuit pas
|
||||
Furnace active=Four actif
|
||||
Furnace inactive=Four inactif
|
||||
(Item: @1; Fuel: @2)=(Article: @1; Carburant: @2)
|
||||
Furnace=Four
|
||||
Stone=Pierre
|
||||
Cobblestone=Pavé
|
||||
Stone Brick=Brique de pierre
|
||||
Stone Block=Bloc de pierre
|
||||
Mossy Cobblestone=Pavé moussu
|
||||
Desert Stone=Pierre du désert
|
||||
Desert Cobblestone=Pavé de pierre du désert
|
||||
Desert Stone Brick=Brique de pierre du désert
|
||||
Desert Stone Block=Bloc de pierre du désert
|
||||
Sandstone=Grès
|
||||
Sandstone Brick=Brique de grès
|
||||
Sandstone Block=Bloc de grès
|
||||
Desert Sandstone=Grès du désert
|
||||
Desert Sandstone Brick=Brique de grès du désert
|
||||
Desert Sandstone Block=Bloc de grès du désert
|
||||
Silver Sandstone=Grès argenté
|
||||
Silver Sandstone Brick=Brique de grès argenté
|
||||
Silver Sandstone Block=Bloc de grès argenté
|
||||
Obsidian=Obsidienne
|
||||
Obsidian Brick=Brique d'obsidienne
|
||||
Obsidian Block=Block d'obsidienne
|
||||
Dirt=Terre
|
||||
Dirt with Grass=Terre avec de l'herbe
|
||||
Dirt with Grass and Footsteps=Terre avec de l'herbe et des traces de pas
|
||||
Dirt with Dry Grass=Terre avec de l'herbe sèche
|
||||
Dirt with Snow=Terre avec de la neige
|
||||
Dirt with Rainforest Litter=Terre avec sol de forêt humide
|
||||
Dirt with Coniferous Litter=Terre avec sol de forêt de conifère
|
||||
Dry Dirt=Terre sèche
|
||||
Dry Dirt with Dry Grass=Terre sèche avec de l'herbe sèche
|
||||
Permafrost=Pergélisol
|
||||
Permafrost with Stones=Pergélisol avec de la pierre
|
||||
Permafrost with Moss=Pergélisol avec de la mousse
|
||||
Sand=Sable
|
||||
Desert Sand=Sable du désert
|
||||
Silver Sand=Sable argenté
|
||||
Gravel=Gravier
|
||||
Clay=Argile
|
||||
Snow=Neige
|
||||
Snow Block=Bloc de neige
|
||||
Ice=Glace
|
||||
Cave Ice=Glace de grotte
|
||||
Apple Tree=Pommier
|
||||
Apple Wood Planks=Planche de pommier
|
||||
Apple Tree Sapling=Pousse de pommier
|
||||
Apple Tree Leaves=Feuilles de pommier
|
||||
Apple=Pomme
|
||||
Apple Marker=Marqueur de pomme
|
||||
Jungle Tree=Arbre de la jungle
|
||||
Jungle Wood Planks=Planche d'arbre de la jungle
|
||||
Jungle Tree Leaves=Feuilles d'arbre de la jungle
|
||||
Jungle Tree Sapling=Pousse d'arbre de la jungle
|
||||
Emergent Jungle Tree Sapling=Pousse d'arbre de la jungle émergent
|
||||
Pine Tree=Pin
|
||||
Pine Wood Planks=Planche de pin
|
||||
Pine Needles=Aiguilles de pin
|
||||
Pine Tree Sapling=Pousse de pin
|
||||
Acacia Tree=Acacia
|
||||
Acacia Wood Planks=Planche d'acacia
|
||||
Acacia Tree Leaves=Feuilles d'acacia
|
||||
Acacia Tree Sapling=Pousse d'acacia
|
||||
Aspen Tree=Tremble
|
||||
Aspen Wood Planks=Planche de tremble
|
||||
Aspen Tree Leaves=Feuilles de tremble
|
||||
Aspen Tree Sapling=Pousse de tremble
|
||||
Coal Ore=Minerai de charbon
|
||||
Coal Block=Bloc de charbon
|
||||
Iron Ore=Bloc de fer
|
||||
Steel Block=Bloc d'acier
|
||||
Copper Ore=Minerai de cuivre
|
||||
Copper Block=Bloc de cuivre
|
||||
Tin Ore=Minerai d'étain
|
||||
Tin Block=Bloc d'étain
|
||||
Bronze Block=Bloc de bronze
|
||||
Mese Ore=Minerai de Mese
|
||||
Mese Block=Bloc de Mese
|
||||
Gold Ore=Minerai d'or
|
||||
Gold Block=Bloc d'or
|
||||
Diamond Ore=Minerai de diamant
|
||||
Diamond Block=Bloc de diamant
|
||||
Cactus=Cactus
|
||||
Large Cactus Seedling=Grand plan de cactus
|
||||
Papyrus=Papyrus
|
||||
Dry Shrub=Arbuste sec
|
||||
Jungle Grass=Herbe de la jungle
|
||||
Grass=Herbe
|
||||
Dry Grass=Herbe sèche
|
||||
Fern=Fougère
|
||||
Marram Grass=Ammophile
|
||||
Bush Stem=Tige de buisson
|
||||
Bush Leaves=Feuilles de buisson
|
||||
Bush Sapling=Pousse de buisson
|
||||
Blueberry Bush Leaves with Berries=Buisson de myrtille avec des myrtilles
|
||||
Blueberry Bush Leaves=Feuilles de buisson à myrtilles
|
||||
Blueberry Bush Sapling=Pousse de buisson à myrtilles
|
||||
Acacia Bush Stem=Tige de buisson d'acacia
|
||||
Acacia Bush Leaves=Feuilles de buisson d'acacia
|
||||
Acacia Bush Sapling=Pousses de buisson d'acacia
|
||||
Pine Bush Stem=Tige de buisson de pin
|
||||
Pine Bush Needles=Aiguilles de buisson de pin
|
||||
Pine Bush Sapling=Pousse de buisson de pin
|
||||
Kelp=Varech
|
||||
Green Coral=Corail vert
|
||||
Pink Coral=Corail rose
|
||||
Cyan Coral=Corail cyan
|
||||
Brown Coral=Corail marron
|
||||
Orange Coral=Corail orange
|
||||
Coral Skeleton=Squelette de corail
|
||||
Water Source=Source d'eau
|
||||
Flowing Water=Ecoulement d'eau
|
||||
River Water Source=Source d'eau de rivière
|
||||
Flowing River Water=Ecoulement d'eau de rivière
|
||||
Lava Source=Source de lave
|
||||
Flowing Lava=Ecoulement de lave
|
||||
Empty Bookshelf=Bibliothèque vide
|
||||
Bookshelf (@1 written, @2 empty books)=Bibliothèque (@1 écrits, @2 livres vides)
|
||||
Bookshelf=Bibliothèque
|
||||
Text too long=Texte trop longue
|
||||
Wooden Sign=Panneau en bois
|
||||
Steel Sign=Panneau en acier
|
||||
Wooden Ladder=Echelle en bois
|
||||
Steel Ladder=Echelle en acier
|
||||
Apple Wood Fence=Barrière de bois de pommier
|
||||
Acacia Wood Fence=Barrière de bois d'acacia
|
||||
Jungle Wood Fence=Barrière de bois de la jungle
|
||||
Pine Wood Fence=Barrière de bois de pin
|
||||
Aspen Wood Fence=Barrière de bois de tremble
|
||||
Apple Wood Fence Rail=Clôture de bois de pommier
|
||||
Acacia Wood Fence Rail=Clôture de bois d'acacia
|
||||
Jungle Wood Fence Rail=Clôture de bois de la jungle
|
||||
Pine Wood Fence Rail=Clôture de bois de pin
|
||||
Aspen Wood Fence Rail=Clôture de bois de tremble
|
||||
Glass=Verre
|
||||
Obsidian Glass=Verre d'obsidienne
|
||||
Brick Block=Bloc de brique
|
||||
Mese Lamp=Lampe de Mese
|
||||
Mese Post Light=Réverbère de Mese
|
||||
Cloud=Nuage
|
||||
Wooden Pickaxe=Pioche en bois
|
||||
Stone Pickaxe=Pioche en pierre
|
||||
Bronze Pickaxe=Pioche en bronze
|
||||
Steel Pickaxe=Pioche en acier
|
||||
Mese Pickaxe=Pioche de Mese
|
||||
Diamond Pickaxe=Pioche en diamant
|
||||
Wooden Shovel=Pelle en bois
|
||||
Stone Shovel=Pelle en pierre
|
||||
Bronze Shovel=Pelle en bronze
|
||||
Steel Shovel=Pelle en acier
|
||||
Mese Shovel=Pelle en Mese
|
||||
Diamond Shovel=Pelle en diamant
|
||||
Wooden Axe=Hache en bois
|
||||
Stone Axe=Hache en pierre
|
||||
Bronze Axe=Hache en bronze
|
||||
Steel Axe=Hache en acier
|
||||
Mese Axe=Hache en Mese
|
||||
Diamond Axe=Hache en diamant
|
||||
Wooden Sword=Epée en bois
|
||||
Stone Sword=Epée en pierre
|
||||
Bronze Sword=Epée en bronze
|
||||
Steel Sword=Epée en acier
|
||||
Mese Sword=Epée en Mese
|
||||
Diamond Sword=Epée en diamant
|
||||
Key=Clé
|
||||
Torch=Torche
|
||||
@1 will intersect protection on growth.=@1 chevauchera la zone protégée avec la croissance.
|
||||
Title:=Titre :
|
||||
Contents:=Contenu :
|
||||
Save=Sauvegarder
|
||||
by @1=de @1
|
||||
Page @1 of @2=Page @1 sur @2
|
||||
"@1"=« @1 »
|
205
mods/default/locale/default.it.tr
Normal file
@ -0,0 +1,205 @@
|
||||
# textdomain: default
|
||||
Locked Chest=Baule chiuso a chiave
|
||||
Locked Chest (owned by @1)=Baule chiuso a chiave (di proprietà di @1)
|
||||
You do not own this chest.=Questo baule non ti appartiene.
|
||||
a locked chest=un baule chiuso a chiave
|
||||
Chest=Baule
|
||||
Stick=Bastone
|
||||
Paper=Carta
|
||||
"@1" by @2="@1" di @2
|
||||
Book=Libro
|
||||
Book with Text=Libro con testo
|
||||
Skeleton Key=Chiave dello Scheletro
|
||||
Key to @1's @2=Chiave per @2 di @1
|
||||
Coal Lump=Grumo di carbone
|
||||
Iron Lump=Grumo di ferro
|
||||
Copper Lump=Grumo di rame
|
||||
Tin Lump=Grumo di stagno
|
||||
Mese Crystal=Cristallo di mese
|
||||
Gold Lump=Grumo d'oro
|
||||
Diamond=Diamante
|
||||
Clay Lump=Grumo d'argilla
|
||||
Steel Ingot=Lingotto d'acciaio
|
||||
Copper Ingot=Lingotto di rame
|
||||
Tin Ingot=Lingotto di stagno
|
||||
Bronze Ingot=Lingotto di bronzo
|
||||
Gold Ingot=Lingotto d'oro
|
||||
Mese Crystal Fragment=Frammento di cristallo di mese
|
||||
Clay Brick=Mattone d'argilla
|
||||
Obsidian Shard=Scheggia d'ossidiana
|
||||
Flint=Selce
|
||||
Blueberries=Mirtilli
|
||||
Furnace is empty=La fornace è vuota
|
||||
100% (output full)=100% (uscita piena)
|
||||
@1%=@1%
|
||||
Empty=Vuota
|
||||
Not cookable=Non cucinabile
|
||||
Furnace active=Fornace attiva
|
||||
Furnace inactive=Fornace inattiva
|
||||
(Item: @1; Fuel: @2)=(Oggetto: @1; Combustibile: @2)
|
||||
Furnace=Fornace
|
||||
Stone=Pietra
|
||||
Cobblestone=Ciottoli
|
||||
Stone Brick=Mattone di pietra
|
||||
Stone Block=Blocco di pietra
|
||||
Mossy Cobblestone=Ciottoli muschiosi
|
||||
Desert Stone=Pietra del deserto
|
||||
Desert Cobblestone=Ciottoli del deserto
|
||||
Desert Stone Brick=Mattone di pietra del deserto
|
||||
Desert Stone Block=Blocco di pietra del deserto
|
||||
Sandstone=Arenaria
|
||||
Sandstone Brick=Mattone d'arenaria
|
||||
Sandstone Block=Blocco d'arenaria
|
||||
Desert Sandstone=Arenaria del deserto
|
||||
Desert Sandstone Brick=Mattone d'arenaria del deserto
|
||||
Desert Sandstone Block=Blocco d'arenaria del deserto
|
||||
Silver Sandstone=Arenaria argentata
|
||||
Silver Sandstone Brick=Mattone d'arenaria argentata
|
||||
Silver Sandstone Block=Blocco d'arenaria argentata
|
||||
Obsidian=Ossidiana
|
||||
Obsidian Brick=Mattone d'ossidiana
|
||||
Obsidian Block=Blocco d'ossidiana
|
||||
Dirt=Terra
|
||||
Dirt with Grass=Terra con erba
|
||||
Dirt with Grass and Footsteps=Terra con erba e impronte
|
||||
Dirt with Dry Grass=Terra con erba secca
|
||||
Dirt with Snow=Terra con neve
|
||||
Dirt with Rainforest Litter=Terra con detriti della foresta pluviale
|
||||
Dirt with Coniferous Litter=Terra con detriti di conifera
|
||||
Dry Dirt=Terra asciutta
|
||||
Dry Dirt with Dry Grass=Terra asciutta con erba secca
|
||||
Permafrost=Permafrost
|
||||
Permafrost with Stones=Permafrost con pietra
|
||||
Permafrost with Moss=Permafrost con muschio
|
||||
Sand=Sabbia
|
||||
Desert Sand=Sabbia del deserto
|
||||
Silver Sand=Sabbia argentata
|
||||
Gravel=Ghiaia
|
||||
Clay=Argilla
|
||||
Snow=Neve
|
||||
Snow Block=Blocco di neve
|
||||
Ice=Ghiaccio
|
||||
Cave Ice=Ghiaccio di caverna
|
||||
Apple Tree=Melo
|
||||
Apple Wood Planks=Assi di melo
|
||||
Apple Tree Sapling=Alberello di melo
|
||||
Apple Tree Leaves=Foglie di melo
|
||||
Apple=Mela
|
||||
Apple Marker=Marcatore mela
|
||||
Jungle Tree=Albero della giungla
|
||||
Jungle Wood Planks=Assi di legno della giungla
|
||||
Jungle Tree Leaves=Foglie di albero della giungla
|
||||
Jungle Tree Sapling=Alberello della giungla
|
||||
Emergent Jungle Tree Sapling=Alberello della giungla emergente
|
||||
Pine Tree=Pino
|
||||
Pine Wood Planks=Assi di legno di pino
|
||||
Pine Needles=Aghi di pino
|
||||
Pine Tree Sapling=Alberello di pino
|
||||
Acacia Tree=Acacia
|
||||
Acacia Wood Planks=Assi di legno d'acacia
|
||||
Acacia Tree Leaves=Foglie d'acacia
|
||||
Acacia Tree Sapling=Alberello d'acacia
|
||||
Aspen Tree=Pioppo
|
||||
Aspen Wood Planks=Assi di legno di pioppo
|
||||
Aspen Tree Leaves=Foglie di pioppo
|
||||
Aspen Tree Sapling=Alberello di pioppo
|
||||
Coal Ore=Minerale di carbone
|
||||
Coal Block=Blocco di carbone
|
||||
Iron Ore=Minerale di ferro
|
||||
Steel Block=Blocco d'acciaio
|
||||
Copper Ore=Minerale di rame
|
||||
Copper Block=Blocco di rame
|
||||
Tin Ore=Minerale di stagno
|
||||
Tin Block=Blocco di stagno
|
||||
Bronze Block=Blocco di bronzo
|
||||
Mese Ore=Minerale di mese
|
||||
Mese Block=Blocco di mese
|
||||
Gold Ore=Minerale d'oro
|
||||
Gold Block=Blocco d'oro
|
||||
Diamond Ore=Minerale di diamante
|
||||
Diamond Block=Blocco di diamante
|
||||
Cactus=Cactus
|
||||
Large Cactus Seedling=Piantina di cactus grande
|
||||
Papyrus=Papiro
|
||||
Dry Shrub=Arbusto secco
|
||||
Jungle Grass=Erba della giungla
|
||||
Grass=Erba
|
||||
Dry Grass=Erba secca
|
||||
Fern=Felce
|
||||
Marram Grass=Ammofila arenaria
|
||||
Bush Stem=Fusto di cespuglio
|
||||
Bush Leaves=Foglie di cespuglio
|
||||
Bush Sapling=Alberello di cespuglio
|
||||
Blueberry Bush Leaves with Berries=Foglie di cespuglio di mirtilli con bacche
|
||||
Blueberry Bush Leaves=Foglie di cespuglio di mirtilli
|
||||
Blueberry Bush Sapling=Alberello di cespuglio di mirtilli
|
||||
Acacia Bush Stem=Fusto di cespuglio d'acacia
|
||||
Acacia Bush Leaves=Foglie di cespuglio d'acacia
|
||||
Acacia Bush Sapling=Alberello di cespuglio d'acacia
|
||||
Pine Bush Stem=Fusto di cespuglio di pino
|
||||
Pine Bush Needles=Aghi di cespuglio di pino
|
||||
Pine Bush Sapling=Alberello di cespuglio di pino
|
||||
Kelp=Alga
|
||||
Green Coral=Corallo verde
|
||||
Pink Coral=Corallo rosa
|
||||
Cyan Coral=Corallo ciano
|
||||
Brown Coral=Corallo marrone
|
||||
Orange Coral=Corallo arancione
|
||||
Coral Skeleton=Scheletro di corallo
|
||||
Water Source=Fonte d'acqua
|
||||
Flowing Water=Acqua corrente
|
||||
River Water Source=Fonte d'acqua di fiume
|
||||
Flowing River Water=Acqua corrente di fiume
|
||||
Lava Source=Fonte di lava
|
||||
Flowing Lava=Lava corrente
|
||||
Empty Bookshelf=Libreria vuota
|
||||
Bookshelf (@1 written, @2 empty books)=Libreria (@1 scritti, @2 vuoti)
|
||||
Bookshelf=Libreria
|
||||
Text too long=Testo troppo lungo
|
||||
Wooden Sign=Cartello di legno
|
||||
Steel Sign=Cartello d'acciaio
|
||||
Wooden Ladder=Scala a pioli di legno
|
||||
Steel Ladder=Scala a pioli d'acciaio
|
||||
Apple Wood Fence=Recinzione di legno di melo
|
||||
Acacia Wood Fence=Recinzione di legno d'acacia
|
||||
Jungle Wood Fence=Recinzione di legno della giungla
|
||||
Pine Wood Fence=Recinzione di legno di pino
|
||||
Aspen Wood Fence=Recinzione di legno di pioppo
|
||||
Apple Wood Fence Rail=Ringhiera della recinzione di legno di melo
|
||||
Acacia Wood Fence Rail=Ringhiera della recinzione di legno d'acacia
|
||||
Jungle Wood Fence Rail=Ringhiera della recinzione di legno della giungla
|
||||
Pine Wood Fence Rail=Ringhiera della recinzione di legno di pino
|
||||
Aspen Wood Fence Rail=Ringhiera della recinzione di legno di pioppo
|
||||
Glass=Vetro
|
||||
Obsidian Glass=Vetro d'ossidiana
|
||||
Brick Block=Blocco di mattone
|
||||
Mese Lamp=Lampada di mese
|
||||
Mese Post Light=Lampioncino di mese
|
||||
Cloud=Nuvola
|
||||
Wooden Pickaxe=Piccone di legno
|
||||
Stone Pickaxe=Piccone di pietra
|
||||
Bronze Pickaxe=Piccone di bronzo
|
||||
Steel Pickaxe=Piccone d'acciaio
|
||||
Mese Pickaxe=Piccone di mese
|
||||
Diamond Pickaxe=Piccone di diamante
|
||||
Wooden Shovel=Pala di legno
|
||||
Stone Shovel=Pala di pietra
|
||||
Bronze Shovel=Pala di bronzo
|
||||
Steel Shovel=Pala d'acciaio
|
||||
Mese Shovel=Pala di mese
|
||||
Diamond Shovel=Pala di diamante
|
||||
Wooden Axe=Ascia di legno
|
||||
Stone Axe=Ascia di pietra
|
||||
Bronze Axe=Ascia di bronzo
|
||||
Steel Axe=Ascia d'acciaio
|
||||
Mese Axe=Ascia di mese
|
||||
Diamond Axe=Ascia di diamante
|
||||
Wooden Sword=Spada di legno
|
||||
Stone Sword=Spada di pietra
|
||||
Bronze Sword=Spada di bronzo
|
||||
Steel Sword=Spada d'acciaio
|
||||
Mese Sword=Spada di mese
|
||||
Diamond Sword=Spada di diamante
|
||||
Key=Chiave
|
||||
Torch=Torcia
|
||||
@1 will intersect protection on growth.=@1 crescendo attraverserà la protezione.
|
211
mods/default/locale/template.txt
Normal file
@ -0,0 +1,211 @@
|
||||
# textdomain: default
|
||||
Locked Chest=
|
||||
Locked Chest (owned by @1)=
|
||||
You do not own this chest.=
|
||||
a locked chest=
|
||||
Chest=
|
||||
Stick=
|
||||
Paper=
|
||||
"@1" by @2=
|
||||
Book=
|
||||
Book with Text=
|
||||
Skeleton Key=
|
||||
Key to @1's @2=
|
||||
Coal Lump=
|
||||
Iron Lump=
|
||||
Copper Lump=
|
||||
Tin Lump=
|
||||
Mese Crystal=
|
||||
Gold Lump=
|
||||
Diamond=
|
||||
Clay Lump=
|
||||
Steel Ingot=
|
||||
Copper Ingot=
|
||||
Tin Ingot=
|
||||
Bronze Ingot=
|
||||
Gold Ingot=
|
||||
Mese Crystal Fragment=
|
||||
Clay Brick=
|
||||
Obsidian Shard=
|
||||
Flint=
|
||||
Blueberries=
|
||||
Furnace is empty=
|
||||
100% (output full)=
|
||||
@1%=
|
||||
Empty=
|
||||
Not cookable=
|
||||
Furnace active=
|
||||
Furnace inactive=
|
||||
(Item: @1; Fuel: @2)=
|
||||
Furnace=
|
||||
Stone=
|
||||
Cobblestone=
|
||||
Stone Brick=
|
||||
Stone Block=
|
||||
Mossy Cobblestone=
|
||||
Desert Stone=
|
||||
Desert Cobblestone=
|
||||
Desert Stone Brick=
|
||||
Desert Stone Block=
|
||||
Sandstone=
|
||||
Sandstone Brick=
|
||||
Sandstone Block=
|
||||
Desert Sandstone=
|
||||
Desert Sandstone Brick=
|
||||
Desert Sandstone Block=
|
||||
Silver Sandstone=
|
||||
Silver Sandstone Brick=
|
||||
Silver Sandstone Block=
|
||||
Obsidian=
|
||||
Obsidian Brick=
|
||||
Obsidian Block=
|
||||
Dirt=
|
||||
Dirt with Grass=
|
||||
Dirt with Grass and Footsteps=
|
||||
Dirt with Dry Grass=
|
||||
Dirt with Snow=
|
||||
Dirt with Rainforest Litter=
|
||||
Dirt with Coniferous Litter=
|
||||
Dry Dirt=
|
||||
Dry Dirt with Dry Grass=
|
||||
Permafrost=
|
||||
Permafrost with Stones=
|
||||
Permafrost with Moss=
|
||||
Sand=
|
||||
Desert Sand=
|
||||
Silver Sand=
|
||||
Gravel=
|
||||
Clay=
|
||||
Snow=
|
||||
Snow Block=
|
||||
Ice=
|
||||
Cave Ice=
|
||||
Apple Tree=
|
||||
Apple Wood Planks=
|
||||
Apple Tree Sapling=
|
||||
Apple Tree Leaves=
|
||||
Apple=
|
||||
Apple Marker=
|
||||
Jungle Tree=
|
||||
Jungle Wood Planks=
|
||||
Jungle Tree Leaves=
|
||||
Jungle Tree Sapling=
|
||||
Emergent Jungle Tree Sapling=
|
||||
Pine Tree=
|
||||
Pine Wood Planks=
|
||||
Pine Needles=
|
||||
Pine Tree Sapling=
|
||||
Acacia Tree=
|
||||
Acacia Wood Planks=
|
||||
Acacia Tree Leaves=
|
||||
Acacia Tree Sapling=
|
||||
Aspen Tree=
|
||||
Aspen Wood Planks=
|
||||
Aspen Tree Leaves=
|
||||
Aspen Tree Sapling=
|
||||
Coal Ore=
|
||||
Coal Block=
|
||||
Iron Ore=
|
||||
Steel Block=
|
||||
Copper Ore=
|
||||
Copper Block=
|
||||
Tin Ore=
|
||||
Tin Block=
|
||||
Bronze Block=
|
||||
Mese Ore=
|
||||
Mese Block=
|
||||
Gold Ore=
|
||||
Gold Block=
|
||||
Diamond Ore=
|
||||
Diamond Block=
|
||||
Cactus=
|
||||
Large Cactus Seedling=
|
||||
Papyrus=
|
||||
Dry Shrub=
|
||||
Jungle Grass=
|
||||
Grass=
|
||||
Dry Grass=
|
||||
Fern=
|
||||
Marram Grass=
|
||||
Bush Stem=
|
||||
Bush Leaves=
|
||||
Bush Sapling=
|
||||
Blueberry Bush Leaves with Berries=
|
||||
Blueberry Bush Leaves=
|
||||
Blueberry Bush Sapling=
|
||||
Acacia Bush Stem=
|
||||
Acacia Bush Leaves=
|
||||
Acacia Bush Sapling=
|
||||
Pine Bush Stem=
|
||||
Pine Bush Needles=
|
||||
Pine Bush Sapling=
|
||||
Kelp=
|
||||
Green Coral=
|
||||
Pink Coral=
|
||||
Cyan Coral=
|
||||
Brown Coral=
|
||||
Orange Coral=
|
||||
Coral Skeleton=
|
||||
Water Source=
|
||||
Flowing Water=
|
||||
River Water Source=
|
||||
Flowing River Water=
|
||||
Lava Source=
|
||||
Flowing Lava=
|
||||
Empty Bookshelf=
|
||||
Bookshelf (@1 written, @2 empty books)=
|
||||
Bookshelf=
|
||||
Text too long=
|
||||
Wooden Sign=
|
||||
Steel Sign=
|
||||
Wooden Ladder=
|
||||
Steel Ladder=
|
||||
Apple Wood Fence=
|
||||
Acacia Wood Fence=
|
||||
Jungle Wood Fence=
|
||||
Pine Wood Fence=
|
||||
Aspen Wood Fence=
|
||||
Apple Wood Fence Rail=
|
||||
Acacia Wood Fence Rail=
|
||||
Jungle Wood Fence Rail=
|
||||
Pine Wood Fence Rail=
|
||||
Aspen Wood Fence Rail=
|
||||
Glass=
|
||||
Obsidian Glass=
|
||||
Brick Block=
|
||||
Mese Lamp=
|
||||
Mese Post Light=
|
||||
Cloud=
|
||||
Wooden Pickaxe=
|
||||
Stone Pickaxe=
|
||||
Bronze Pickaxe=
|
||||
Steel Pickaxe=
|
||||
Mese Pickaxe=
|
||||
Diamond Pickaxe=
|
||||
Wooden Shovel=
|
||||
Stone Shovel=
|
||||
Bronze Shovel=
|
||||
Steel Shovel=
|
||||
Mese Shovel=
|
||||
Diamond Shovel=
|
||||
Wooden Axe=
|
||||
Stone Axe=
|
||||
Bronze Axe=
|
||||
Steel Axe=
|
||||
Mese Axe=
|
||||
Diamond Axe=
|
||||
Wooden Sword=
|
||||
Stone Sword=
|
||||
Bronze Sword=
|
||||
Steel Sword=
|
||||
Mese Sword=
|
||||
Diamond Sword=
|
||||
Key=
|
||||
Torch=
|
||||
@1 will intersect protection on growth.=
|
||||
Title:=
|
||||
Contents:=
|
||||
Save=
|
||||
by @1=
|
||||
Page @1 of @2=
|
||||
"@1"=
|
@ -2,13 +2,18 @@
|
||||
-- Aliases for map generators
|
||||
--
|
||||
|
||||
-- All mapgens
|
||||
|
||||
minetest.register_alias("mapgen_stone", "default:stone")
|
||||
minetest.register_alias("mapgen_water_source", "default:water_source")
|
||||
minetest.register_alias("mapgen_river_water_source", "default:river_water_source")
|
||||
|
||||
-- Additional aliases needed for mapgen v6
|
||||
|
||||
minetest.register_alias("mapgen_lava_source", "default:lava_source")
|
||||
minetest.register_alias("mapgen_dirt", "default:dirt")
|
||||
minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass")
|
||||
minetest.register_alias("mapgen_sand", "default:sand")
|
||||
minetest.register_alias("mapgen_water_source", "default:water_source")
|
||||
minetest.register_alias("mapgen_river_water_source", "default:river_water_source")
|
||||
minetest.register_alias("mapgen_lava_source", "default:lava_source")
|
||||
minetest.register_alias("mapgen_gravel", "default:gravel")
|
||||
minetest.register_alias("mapgen_desert_stone", "default:desert_stone")
|
||||
minetest.register_alias("mapgen_desert_sand", "default:desert_sand")
|
||||
@ -16,9 +21,6 @@ minetest.register_alias("mapgen_dirt_with_snow", "default:dirt_with_snow")
|
||||
minetest.register_alias("mapgen_snowblock", "default:snowblock")
|
||||
minetest.register_alias("mapgen_snow", "default:snow")
|
||||
minetest.register_alias("mapgen_ice", "default:ice")
|
||||
minetest.register_alias("mapgen_sandstone", "default:sandstone")
|
||||
|
||||
-- Flora
|
||||
|
||||
minetest.register_alias("mapgen_tree", "default:tree")
|
||||
minetest.register_alias("mapgen_leaves", "default:leaves")
|
||||
@ -29,14 +31,10 @@ minetest.register_alias("mapgen_junglegrass", "default:junglegrass")
|
||||
minetest.register_alias("mapgen_pine_tree", "default:pine_tree")
|
||||
minetest.register_alias("mapgen_pine_needles", "default:pine_needles")
|
||||
|
||||
-- Dungeons
|
||||
|
||||
minetest.register_alias("mapgen_cobble", "default:cobble")
|
||||
minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble")
|
||||
minetest.register_alias("mapgen_mossycobble", "default:mossycobble")
|
||||
minetest.register_alias("mapgen_stair_desert_stone", "stairs:stair_desert_stone")
|
||||
minetest.register_alias("mapgen_sandstonebrick", "default:sandstonebrick")
|
||||
minetest.register_alias("mapgen_stair_sandstone_block", "stairs:stair_sandstone_block")
|
||||
|
||||
|
||||
--
|
||||
@ -554,14 +552,6 @@ function default.register_ores()
|
||||
octaves = 1,
|
||||
persist = 0.0
|
||||
},
|
||||
biomes = {"icesheet_ocean", "tundra", "tundra_beach", "tundra_ocean",
|
||||
"taiga", "taiga_ocean", "snowy_grassland", "snowy_grassland_ocean",
|
||||
"grassland", "grassland_dunes", "grassland_ocean", "coniferous_forest",
|
||||
"coniferous_forest_dunes", "coniferous_forest_ocean", "deciduous_forest",
|
||||
"deciduous_forest_shore", "deciduous_forest_ocean", "cold_desert",
|
||||
"cold_desert_ocean", "savanna", "savanna_shore", "savanna_ocean",
|
||||
"rainforest", "rainforest_swamp", "rainforest_ocean", "underground",
|
||||
"floatland_coniferous_forest", "floatland_coniferous_forest_ocean"}
|
||||
})
|
||||
|
||||
-- Dirt
|
||||
@ -583,9 +573,10 @@ function default.register_ores()
|
||||
octaves = 1,
|
||||
persist = 0.0
|
||||
},
|
||||
-- Only where default:dirt is present as surface material
|
||||
biomes = {"taiga", "snowy_grassland", "grassland", "coniferous_forest",
|
||||
"deciduous_forest", "deciduous_forest_shore", "savanna", "savanna_shore",
|
||||
"rainforest", "rainforest_swamp", "floatland_coniferous_forest"}
|
||||
"deciduous_forest", "deciduous_forest_shore", "rainforest",
|
||||
"rainforest_swamp", "floatland_coniferous_forest"}
|
||||
})
|
||||
|
||||
-- Gravel
|
||||
@ -607,14 +598,6 @@ function default.register_ores()
|
||||
octaves = 1,
|
||||
persist = 0.0
|
||||
},
|
||||
biomes = {"icesheet_ocean", "tundra", "tundra_beach", "tundra_ocean",
|
||||
"taiga", "taiga_ocean", "snowy_grassland", "snowy_grassland_ocean",
|
||||
"grassland", "grassland_dunes", "grassland_ocean", "coniferous_forest",
|
||||
"coniferous_forest_dunes", "coniferous_forest_ocean", "deciduous_forest",
|
||||
"deciduous_forest_shore", "deciduous_forest_ocean", "cold_desert",
|
||||
"cold_desert_ocean", "savanna", "savanna_shore", "savanna_ocean",
|
||||
"rainforest", "rainforest_swamp", "rainforest_ocean", "underground",
|
||||
"floatland_coniferous_forest", "floatland_coniferous_forest_ocean"}
|
||||
})
|
||||
|
||||
-- Scatter ores
|
||||
@ -924,6 +907,8 @@ function default.register_biomes(upper_limit)
|
||||
node_river_water = "default:ice",
|
||||
node_riverbed = "default:gravel",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:ice",
|
||||
node_dungeon_stair = "stairs:stair_ice",
|
||||
y_max = upper_limit,
|
||||
y_min = -8,
|
||||
heat_point = 0,
|
||||
@ -939,8 +924,24 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_water_top = "default:ice",
|
||||
depth_water_top = 10,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -9,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 0,
|
||||
humidity_point = 73,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "icesheet_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 0,
|
||||
humidity_point = 73,
|
||||
})
|
||||
@ -952,6 +953,9 @@ function default.register_biomes(upper_limit)
|
||||
node_dust = "default:snow",
|
||||
node_riverbed = "default:gravel",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 47,
|
||||
heat_point = 0,
|
||||
@ -966,6 +970,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 1,
|
||||
node_riverbed = "default:gravel",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 4,
|
||||
y_max = 46,
|
||||
y_min = 2,
|
||||
@ -981,6 +988,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 2,
|
||||
node_riverbed = "default:gravel",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = 1,
|
||||
y_min = -3,
|
||||
@ -996,9 +1006,25 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:gravel",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = -4,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 0,
|
||||
humidity_point = 40,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "tundra_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 0,
|
||||
humidity_point = 40,
|
||||
})
|
||||
@ -1014,6 +1040,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 4,
|
||||
heat_point = 25,
|
||||
@ -1029,9 +1058,25 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 25,
|
||||
humidity_point = 70,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "taiga_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 25,
|
||||
humidity_point = 70,
|
||||
})
|
||||
@ -1047,6 +1092,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 1,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 4,
|
||||
heat_point = 20,
|
||||
@ -1062,9 +1110,25 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 20,
|
||||
humidity_point = 35,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "snowy_grassland_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 20,
|
||||
humidity_point = 35,
|
||||
})
|
||||
@ -1079,6 +1143,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 1,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 6,
|
||||
heat_point = 50,
|
||||
@ -1093,6 +1160,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 2,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = 5,
|
||||
y_min = 4,
|
||||
@ -1108,8 +1178,24 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 50,
|
||||
humidity_point = 35,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "grassland_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 50,
|
||||
humidity_point = 35,
|
||||
})
|
||||
@ -1124,6 +1210,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 6,
|
||||
heat_point = 45,
|
||||
@ -1138,6 +1227,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = 5,
|
||||
y_min = 4,
|
||||
@ -1153,8 +1245,24 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 45,
|
||||
humidity_point = 70,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "coniferous_forest_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 45,
|
||||
humidity_point = 70,
|
||||
})
|
||||
@ -1169,6 +1277,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 1,
|
||||
heat_point = 60,
|
||||
@ -1183,6 +1294,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 0,
|
||||
y_min = -1,
|
||||
heat_point = 60,
|
||||
@ -1197,9 +1311,25 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = -2,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 60,
|
||||
humidity_point = 68,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "deciduous_forest_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 60,
|
||||
humidity_point = 68,
|
||||
})
|
||||
@ -1215,6 +1345,8 @@ function default.register_biomes(upper_limit)
|
||||
node_stone = "default:desert_stone",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:desert_stone",
|
||||
node_dungeon_stair = "stairs:stair_desert_stone",
|
||||
y_max = upper_limit,
|
||||
y_min = 4,
|
||||
heat_point = 92,
|
||||
@ -1230,9 +1362,24 @@ function default.register_biomes(upper_limit)
|
||||
node_stone = "default:desert_stone",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:desert_stone",
|
||||
node_dungeon_stair = "stairs:stair_desert_stone",
|
||||
vertical_blend = 1,
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 92,
|
||||
humidity_point = 16,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "desert_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 92,
|
||||
humidity_point = 16,
|
||||
})
|
||||
@ -1248,6 +1395,8 @@ function default.register_biomes(upper_limit)
|
||||
node_stone = "default:sandstone",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:sandstonebrick",
|
||||
node_dungeon_stair = "stairs:stair_sandstone_block",
|
||||
y_max = upper_limit,
|
||||
y_min = 4,
|
||||
heat_point = 60,
|
||||
@ -1263,8 +1412,23 @@ function default.register_biomes(upper_limit)
|
||||
node_stone = "default:sandstone",
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:sandstonebrick",
|
||||
node_dungeon_stair = "stairs:stair_sandstone_block",
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 60,
|
||||
humidity_point = 0,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "sandstone_desert_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 60,
|
||||
humidity_point = 0,
|
||||
})
|
||||
@ -1279,6 +1443,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 1,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 4,
|
||||
heat_point = 40,
|
||||
@ -1293,9 +1460,25 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = 3,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 40,
|
||||
humidity_point = 0,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "cold_desert_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 40,
|
||||
humidity_point = 0,
|
||||
})
|
||||
@ -1304,12 +1487,15 @@ function default.register_biomes(upper_limit)
|
||||
|
||||
minetest.register_biome({
|
||||
name = "savanna",
|
||||
node_top = "default:dirt_with_dry_grass",
|
||||
node_top = "default:dry_dirt_with_dry_grass",
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
node_filler = "default:dry_dirt",
|
||||
depth_filler = 1,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 1,
|
||||
heat_point = 89,
|
||||
@ -1318,12 +1504,15 @@ function default.register_biomes(upper_limit)
|
||||
|
||||
minetest.register_biome({
|
||||
name = "savanna_shore",
|
||||
node_top = "default:dirt",
|
||||
node_top = "default:dry_dirt",
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
node_filler = "default:dry_dirt",
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 0,
|
||||
y_min = -1,
|
||||
heat_point = 89,
|
||||
@ -1338,9 +1527,25 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = -2,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 89,
|
||||
humidity_point = 42,
|
||||
})
|
||||
|
||||
minetest.register_biome({
|
||||
name = "savanna_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 89,
|
||||
humidity_point = 42,
|
||||
})
|
||||
@ -1355,6 +1560,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = upper_limit,
|
||||
y_min = 1,
|
||||
heat_point = 86,
|
||||
@ -1369,6 +1577,9 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 0,
|
||||
y_min = -1,
|
||||
heat_point = 86,
|
||||
@ -1383,21 +1594,27 @@ function default.register_biomes(upper_limit)
|
||||
depth_filler = 3,
|
||||
node_riverbed = "default:sand",
|
||||
depth_riverbed = 2,
|
||||
node_cave_liquid = "default:water_source",
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
vertical_blend = 1,
|
||||
y_max = -2,
|
||||
y_min = -112,
|
||||
y_min = -255,
|
||||
heat_point = 86,
|
||||
humidity_point = 65,
|
||||
})
|
||||
|
||||
-- Underground
|
||||
|
||||
minetest.register_biome({
|
||||
name = "underground",
|
||||
y_max = -113,
|
||||
name = "rainforest_under",
|
||||
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = -256,
|
||||
y_min = -31000,
|
||||
heat_point = 50,
|
||||
humidity_point = 50,
|
||||
heat_point = 86,
|
||||
humidity_point = 65,
|
||||
})
|
||||
end
|
||||
|
||||
@ -1414,6 +1631,9 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
depth_filler = 1,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 31000,
|
||||
y_min = floatland_level + 2,
|
||||
heat_point = 50,
|
||||
@ -1426,6 +1646,9 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
|
||||
depth_top = 1,
|
||||
node_filler = "default:dirt",
|
||||
depth_filler = 3,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = 31000,
|
||||
y_min = floatland_level + 2,
|
||||
heat_point = 50,
|
||||
@ -1438,6 +1661,9 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
|
||||
depth_top = 1,
|
||||
node_filler = "default:sand",
|
||||
depth_filler = 3,
|
||||
node_dungeon = "default:cobble",
|
||||
node_dungeon_alt = "default:mossycobble",
|
||||
node_dungeon_stair = "stairs:stair_cobble",
|
||||
y_max = floatland_level + 1,
|
||||
y_min = shadow_limit,
|
||||
heat_point = 50,
|
||||
@ -1572,7 +1798,7 @@ local function register_dry_grass_decoration(offset, scale, length)
|
||||
minetest.register_decoration({
|
||||
name = "default:dry_grass_" .. length,
|
||||
deco_type = "simple",
|
||||
place_on = {"default:dirt_with_dry_grass"},
|
||||
place_on = {"default:dry_dirt_with_dry_grass"},
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
offset = offset,
|
||||
@ -1612,6 +1838,30 @@ end
|
||||
|
||||
|
||||
function default.register_decorations()
|
||||
-- Savanna bare dirt patches.
|
||||
-- Must come before all savanna decorations that are placed on dry grass.
|
||||
-- Noise is similar to long dry grass noise, but scale inverted, to appear
|
||||
-- where long dry grass is least dense and shortest.
|
||||
|
||||
minetest.register_decoration({
|
||||
deco_type = "simple",
|
||||
place_on = {"default:dry_dirt_with_dry_grass"},
|
||||
sidelen = 4,
|
||||
noise_params = {
|
||||
offset = -1.5,
|
||||
scale = -1.5,
|
||||
spread = {x = 200, y = 200, z = 200},
|
||||
seed = 329,
|
||||
octaves = 4,
|
||||
persist = 1.0
|
||||
},
|
||||
biomes = {"savanna"},
|
||||
y_max = 31000,
|
||||
y_min = 1,
|
||||
decoration = "default:dry_dirt",
|
||||
place_offset_y = -1,
|
||||
flags = "force_placement",
|
||||
})
|
||||
|
||||
-- Apple tree and log
|
||||
|
||||
@ -1786,7 +2036,7 @@ function default.register_decorations()
|
||||
minetest.register_decoration({
|
||||
name = "default:acacia_tree",
|
||||
deco_type = "schematic",
|
||||
place_on = {"default:dirt_with_dry_grass"},
|
||||
place_on = {"default:dry_dirt_with_dry_grass"},
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
offset = 0,
|
||||
@ -1807,7 +2057,7 @@ function default.register_decorations()
|
||||
minetest.register_decoration({
|
||||
name = "default:acacia_log",
|
||||
deco_type = "schematic",
|
||||
place_on = {"default:dirt_with_dry_grass"},
|
||||
place_on = {"default:dry_dirt_with_dry_grass"},
|
||||
place_offset_y = 1,
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
@ -1824,7 +2074,7 @@ function default.register_decorations()
|
||||
schematic = minetest.get_modpath("default") .. "/schematics/acacia_log.mts",
|
||||
flags = "place_center_x",
|
||||
rotation = "random",
|
||||
spawn_by = "default:dirt_with_dry_grass",
|
||||
spawn_by = "default:dry_dirt_with_dry_grass",
|
||||
num_spawn_by = 8,
|
||||
})
|
||||
|
||||
@ -1992,7 +2242,7 @@ function default.register_decorations()
|
||||
minetest.register_decoration({
|
||||
name = "default:acacia_bush",
|
||||
deco_type = "schematic",
|
||||
place_on = {"default:dirt_with_dry_grass"},
|
||||
place_on = {"default:dry_dirt_with_dry_grass"},
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
offset = -0.004,
|
||||
@ -2098,13 +2348,13 @@ function default.register_decorations()
|
||||
place_on = {"default:sand"},
|
||||
sidelen = 4,
|
||||
noise_params = {
|
||||
offset = -0.4,
|
||||
scale = 3.0,
|
||||
offset = -0.7,
|
||||
scale = 4.0,
|
||||
spread = {x = 16, y = 16, z = 16},
|
||||
seed = 513337,
|
||||
octaves = 1,
|
||||
persist = 0.5,
|
||||
flags = "absvalue"
|
||||
persist = 0.0,
|
||||
flags = "absvalue, eased"
|
||||
},
|
||||
biomes = {"coniferous_forest_dunes", "grassland_dunes"},
|
||||
y_max = 6,
|
||||
|
3
mods/default/mod.conf
Normal file
@ -0,0 +1,3 @@
|
||||
name = default
|
||||
description = Minetest Game mod: default
|
||||
optional_depends = player_api
|
BIN
mods/default/textures/default_dry_dirt.png
Normal file
After Width: | Height: | Size: 256 B |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 461 B |
Before Width: | Height: | Size: 779 B After Width: | Height: | Size: 590 B |
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 269 B |
@ -1,5 +1,8 @@
|
||||
-- mods/default/tools.lua
|
||||
|
||||
-- support for MT game translation.
|
||||
local S = default.get_translator
|
||||
|
||||
-- The hand
|
||||
minetest.register_item(":", {
|
||||
type = "none",
|
||||
@ -22,7 +25,7 @@ minetest.register_item(":", {
|
||||
--
|
||||
|
||||
minetest.register_tool("default:pick_wood", {
|
||||
description = "Wooden Pickaxe",
|
||||
description = S("Wooden Pickaxe"),
|
||||
inventory_image = "default_tool_woodpick.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.2,
|
||||
@ -32,12 +35,12 @@ minetest.register_tool("default:pick_wood", {
|
||||
},
|
||||
damage_groups = {fleshy=2},
|
||||
},
|
||||
groups = {flammable = 2},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {pickaxe = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:pick_stone", {
|
||||
description = "Stone Pickaxe",
|
||||
description = S("Stone Pickaxe"),
|
||||
inventory_image = "default_tool_stonepick.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.3,
|
||||
@ -48,10 +51,11 @@ minetest.register_tool("default:pick_stone", {
|
||||
damage_groups = {fleshy=3},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {pickaxe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:pick_bronze", {
|
||||
description = "Bronze Pickaxe",
|
||||
description = S("Bronze Pickaxe"),
|
||||
inventory_image = "default_tool_bronzepick.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.0,
|
||||
@ -62,10 +66,11 @@ minetest.register_tool("default:pick_bronze", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {pickaxe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:pick_steel", {
|
||||
description = "Steel Pickaxe",
|
||||
description = S("Steel Pickaxe"),
|
||||
inventory_image = "default_tool_steelpick.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.0,
|
||||
@ -76,10 +81,11 @@ minetest.register_tool("default:pick_steel", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {pickaxe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:pick_mese", {
|
||||
description = "Mese Pickaxe",
|
||||
description = S("Mese Pickaxe"),
|
||||
inventory_image = "default_tool_mesepick.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.9,
|
||||
@ -90,10 +96,11 @@ minetest.register_tool("default:pick_mese", {
|
||||
damage_groups = {fleshy=5},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {pickaxe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:pick_diamond", {
|
||||
description = "Diamond Pickaxe",
|
||||
description = S("Diamond Pickaxe"),
|
||||
inventory_image = "default_tool_diamondpick.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.9,
|
||||
@ -104,6 +111,7 @@ minetest.register_tool("default:pick_diamond", {
|
||||
damage_groups = {fleshy=5},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {pickaxe = 1}
|
||||
})
|
||||
|
||||
--
|
||||
@ -111,7 +119,7 @@ minetest.register_tool("default:pick_diamond", {
|
||||
--
|
||||
|
||||
minetest.register_tool("default:shovel_wood", {
|
||||
description = "Wooden Shovel",
|
||||
description = S("Wooden Shovel"),
|
||||
inventory_image = "default_tool_woodshovel.png",
|
||||
wield_image = "default_tool_woodshovel.png^[transformR90",
|
||||
tool_capabilities = {
|
||||
@ -122,12 +130,12 @@ minetest.register_tool("default:shovel_wood", {
|
||||
},
|
||||
damage_groups = {fleshy=2},
|
||||
},
|
||||
groups = {flammable = 2},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {shovel = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:shovel_stone", {
|
||||
description = "Stone Shovel",
|
||||
description = S("Stone Shovel"),
|
||||
inventory_image = "default_tool_stoneshovel.png",
|
||||
wield_image = "default_tool_stoneshovel.png^[transformR90",
|
||||
tool_capabilities = {
|
||||
@ -139,10 +147,11 @@ minetest.register_tool("default:shovel_stone", {
|
||||
damage_groups = {fleshy=2},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {shovel = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:shovel_bronze", {
|
||||
description = "Bronze Shovel",
|
||||
description = S("Bronze Shovel"),
|
||||
inventory_image = "default_tool_bronzeshovel.png",
|
||||
wield_image = "default_tool_bronzeshovel.png^[transformR90",
|
||||
tool_capabilities = {
|
||||
@ -154,10 +163,11 @@ minetest.register_tool("default:shovel_bronze", {
|
||||
damage_groups = {fleshy=3},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {shovel = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:shovel_steel", {
|
||||
description = "Steel Shovel",
|
||||
description = S("Steel Shovel"),
|
||||
inventory_image = "default_tool_steelshovel.png",
|
||||
wield_image = "default_tool_steelshovel.png^[transformR90",
|
||||
tool_capabilities = {
|
||||
@ -169,10 +179,11 @@ minetest.register_tool("default:shovel_steel", {
|
||||
damage_groups = {fleshy=3},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {shovel = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:shovel_mese", {
|
||||
description = "Mese Shovel",
|
||||
description = S("Mese Shovel"),
|
||||
inventory_image = "default_tool_meseshovel.png",
|
||||
wield_image = "default_tool_meseshovel.png^[transformR90",
|
||||
tool_capabilities = {
|
||||
@ -184,10 +195,11 @@ minetest.register_tool("default:shovel_mese", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {shovel = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:shovel_diamond", {
|
||||
description = "Diamond Shovel",
|
||||
description = S("Diamond Shovel"),
|
||||
inventory_image = "default_tool_diamondshovel.png",
|
||||
wield_image = "default_tool_diamondshovel.png^[transformR90",
|
||||
tool_capabilities = {
|
||||
@ -199,6 +211,7 @@ minetest.register_tool("default:shovel_diamond", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {shovel = 1}
|
||||
})
|
||||
|
||||
--
|
||||
@ -206,7 +219,7 @@ minetest.register_tool("default:shovel_diamond", {
|
||||
--
|
||||
|
||||
minetest.register_tool("default:axe_wood", {
|
||||
description = "Wooden Axe",
|
||||
description = S("Wooden Axe"),
|
||||
inventory_image = "default_tool_woodaxe.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.0,
|
||||
@ -216,12 +229,12 @@ minetest.register_tool("default:axe_wood", {
|
||||
},
|
||||
damage_groups = {fleshy=2},
|
||||
},
|
||||
groups = {flammable = 2},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {axe = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:axe_stone", {
|
||||
description = "Stone Axe",
|
||||
description = S("Stone Axe"),
|
||||
inventory_image = "default_tool_stoneaxe.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.2,
|
||||
@ -232,10 +245,11 @@ minetest.register_tool("default:axe_stone", {
|
||||
damage_groups = {fleshy=3},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {axe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:axe_bronze", {
|
||||
description = "Bronze Axe",
|
||||
description = S("Bronze Axe"),
|
||||
inventory_image = "default_tool_bronzeaxe.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.0,
|
||||
@ -246,10 +260,11 @@ minetest.register_tool("default:axe_bronze", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {axe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:axe_steel", {
|
||||
description = "Steel Axe",
|
||||
description = S("Steel Axe"),
|
||||
inventory_image = "default_tool_steelaxe.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.0,
|
||||
@ -260,10 +275,11 @@ minetest.register_tool("default:axe_steel", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {axe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:axe_mese", {
|
||||
description = "Mese Axe",
|
||||
description = S("Mese Axe"),
|
||||
inventory_image = "default_tool_meseaxe.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.9,
|
||||
@ -274,10 +290,11 @@ minetest.register_tool("default:axe_mese", {
|
||||
damage_groups = {fleshy=6},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {axe = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:axe_diamond", {
|
||||
description = "Diamond Axe",
|
||||
description = S("Diamond Axe"),
|
||||
inventory_image = "default_tool_diamondaxe.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.9,
|
||||
@ -288,6 +305,7 @@ minetest.register_tool("default:axe_diamond", {
|
||||
damage_groups = {fleshy=7},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {axe = 1}
|
||||
})
|
||||
|
||||
--
|
||||
@ -295,7 +313,7 @@ minetest.register_tool("default:axe_diamond", {
|
||||
--
|
||||
|
||||
minetest.register_tool("default:sword_wood", {
|
||||
description = "Wooden Sword",
|
||||
description = S("Wooden Sword"),
|
||||
inventory_image = "default_tool_woodsword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1,
|
||||
@ -305,12 +323,12 @@ minetest.register_tool("default:sword_wood", {
|
||||
},
|
||||
damage_groups = {fleshy=2},
|
||||
},
|
||||
groups = {flammable = 2},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {sword = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:sword_stone", {
|
||||
description = "Stone Sword",
|
||||
description = S("Stone Sword"),
|
||||
inventory_image = "default_tool_stonesword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 1.2,
|
||||
@ -321,10 +339,11 @@ minetest.register_tool("default:sword_stone", {
|
||||
damage_groups = {fleshy=4},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {sword = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:sword_bronze", {
|
||||
description = "Bronze Sword",
|
||||
description = S("Bronze Sword"),
|
||||
inventory_image = "default_tool_bronzesword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.8,
|
||||
@ -335,10 +354,11 @@ minetest.register_tool("default:sword_bronze", {
|
||||
damage_groups = {fleshy=6},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {sword = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:sword_steel", {
|
||||
description = "Steel Sword",
|
||||
description = S("Steel Sword"),
|
||||
inventory_image = "default_tool_steelsword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.8,
|
||||
@ -349,10 +369,11 @@ minetest.register_tool("default:sword_steel", {
|
||||
damage_groups = {fleshy=6},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {sword = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:sword_mese", {
|
||||
description = "Mese Sword",
|
||||
description = S("Mese Sword"),
|
||||
inventory_image = "default_tool_mesesword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.7,
|
||||
@ -363,10 +384,11 @@ minetest.register_tool("default:sword_mese", {
|
||||
damage_groups = {fleshy=7},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {sword = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:sword_diamond", {
|
||||
description = "Diamond Sword",
|
||||
description = S("Diamond Sword"),
|
||||
inventory_image = "default_tool_diamondsword.png",
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.7,
|
||||
@ -377,10 +399,11 @@ minetest.register_tool("default:sword_diamond", {
|
||||
damage_groups = {fleshy=8},
|
||||
},
|
||||
sound = {breaks = "default_tool_breaks"},
|
||||
groups = {sword = 1}
|
||||
})
|
||||
|
||||
minetest.register_tool("default:key", {
|
||||
description = "Key",
|
||||
description = S("Key"),
|
||||
inventory_image = "default_key.png",
|
||||
groups = {key = 1, not_in_creative_inventory = 1},
|
||||
stack_max = 1,
|
||||
|
@ -1,3 +1,8 @@
|
||||
-- default/torch.lua
|
||||
|
||||
-- support for MT game translation.
|
||||
local S = default.get_translator
|
||||
|
||||
local function on_flood(pos, oldnode, newnode)
|
||||
minetest.add_item(pos, ItemStack("default:torch 1"))
|
||||
-- Play flame-extinguish sound if liquid is not an 'igniter'
|
||||
@ -14,7 +19,7 @@ local function on_flood(pos, oldnode, newnode)
|
||||
end
|
||||
|
||||
minetest.register_node("default:torch", {
|
||||
description = "Torch",
|
||||
description = S("Torch"),
|
||||
drawtype = "mesh",
|
||||
mesh = "torch_floor.obj",
|
||||
inventory_image = "default_torch_on_floor.png",
|
||||
|
@ -1,3 +1,8 @@
|
||||
-- default/trees.lua
|
||||
|
||||
-- support for MT game translation.
|
||||
local S = default.get_translator
|
||||
|
||||
local random = math.random
|
||||
|
||||
--
|
||||
@ -560,9 +565,12 @@ function default.sapling_on_place(itemstack, placer, pointed_thing,
|
||||
interval) then
|
||||
minetest.record_protection_violation(pos, player_name)
|
||||
-- Print extra information to explain
|
||||
-- minetest.chat_send_player(player_name,
|
||||
-- itemstack:get_definition().description .. " will intersect protection " ..
|
||||
-- "on growth")
|
||||
minetest.chat_send_player(player_name,
|
||||
itemstack:get_definition().description .. " will intersect protection " ..
|
||||
"on growth")
|
||||
S("@1 will intersect protection on growth.",
|
||||
itemstack:get_definition().description))
|
||||
return itemstack
|
||||
end
|
||||
|
||||
|