Compare commits
5 Commits
35bb569ee1
...
51e3e0b0ca
Author | SHA1 | Date |
---|---|---|
Araca | 51e3e0b0ca | |
Araca | 171870adc7 | |
Araca | 34ee9eb0e9 | |
Araca | 8cb5d9d1cd | |
Araca | c8ea6baca3 |
|
@ -49,7 +49,7 @@ local dolphin = {
|
|||
visual = "mesh",
|
||||
mesh = "extra_mobs_dolphin.b3d",
|
||||
textures = {
|
||||
{"extra_mobs_dolphin.png"}
|
||||
{"mobs_mc_dolphin.png"}
|
||||
},
|
||||
sounds = {
|
||||
},
|
||||
|
|
|
@ -27,7 +27,7 @@ local hoglin = {
|
|||
visual = "mesh",
|
||||
mesh = "extra_mobs_hoglin.b3d",
|
||||
textures = { {
|
||||
"extra_mobs_hoglin.png",
|
||||
"mobs_mc_hoglin.png",
|
||||
} },
|
||||
visual_size = {x=3, y=3},
|
||||
sounds = {
|
||||
|
@ -91,7 +91,7 @@ mcl_mobs.register_mob("mobs_mc:hoglin", hoglin)
|
|||
local zoglin = table.copy(hoglin)
|
||||
zoglin.description = S("Zoglin")
|
||||
zoglin.fire_resistant = 1
|
||||
zoglin.textures = {"extra_mobs_zoglin.png"}
|
||||
zoglin.textures = {"mobs_mc_zoglin.png"}
|
||||
zoglin.do_custom = function()
|
||||
return
|
||||
end
|
||||
|
@ -109,7 +109,7 @@ baby_hoglin.xp_min = 20
|
|||
baby_hoglin.xp_max = 20
|
||||
baby_hoglin.visual_size = {x=hoglin.visual_size.x/2, y=hoglin.visual_size.y/2}
|
||||
textures = { {
|
||||
"extra_mobs_hoglin.png",
|
||||
"mobs_mc_hoglin.png",
|
||||
"extra_mobs_trans.png",
|
||||
} }
|
||||
baby_hoglin.walk_velocity = 1.2
|
||||
|
|
|
@ -56,7 +56,7 @@ local piglin = {
|
|||
spawn_in_group = 4,
|
||||
spawn_in_group_min = 2,
|
||||
textures = { {
|
||||
"extra_mobs_piglin.png",
|
||||
"mobs_mc_piglin.png",
|
||||
"mcl_bows_bow_2.png",
|
||||
} },
|
||||
visual_size = {x=1, y=1},
|
||||
|
@ -185,7 +185,7 @@ mcl_mobs.register_mob("mobs_mc:piglin", piglin)
|
|||
local sword_piglin = table.copy(piglin)
|
||||
sword_piglin.description = S("Sword Piglin")
|
||||
sword_piglin.mesh = "extra_mobs_sword_piglin.b3d"
|
||||
sword_piglin.textures = {"extra_mobs_piglin.png", "default_tool_goldsword.png"}
|
||||
sword_piglin.textures = {"mobs_mc_piglin.png", "default_tool_goldsword.png"}
|
||||
sword_piglin.on_spawn = function(self)
|
||||
self.gold_items = 0
|
||||
self.weapon = self.base_texture[2]
|
||||
|
@ -357,7 +357,7 @@ piglin_brute.lava_damage = 0
|
|||
piglin_brute.fire_damage = 0
|
||||
piglin_brute.attack_animals = true
|
||||
piglin_brute.mesh = "extra_mobs_sword_piglin.b3d"
|
||||
piglin_brute.textures = {"extra_mobs_piglin_brute.png", "default_tool_goldaxe.png", "extra_mobs_trans.png"}
|
||||
piglin_brute.textures = {"mobs_mc_piglin_brute.png", "default_tool_goldaxe.png", "extra_mobs_trans.png"}
|
||||
piglin_brute.attack_type = "dogfight"
|
||||
piglin_brute.animation = {
|
||||
stand_speed = 30,
|
||||
|
|
|
@ -44,12 +44,12 @@ mcl_mobs.register_mob("mobs_mc:snowman", {
|
|||
},
|
||||
textures = {
|
||||
"mobs_mc_snowman.png", --snowman texture
|
||||
"farming_pumpkin_side.png", --top
|
||||
"farming_pumpkin_top.png", --down
|
||||
"farming_pumpkin_face.png", --front
|
||||
"farming_pumpkin_side.png", --left
|
||||
"farming_pumpkin_side.png", --right
|
||||
"farming_pumpkin_top.png", --left
|
||||
"mcl_farming_pumpkin_side.png", --top
|
||||
"mcl_farming_pumpkin_top.png", --down
|
||||
"mcl_farming_pumpkin_face.png", --front
|
||||
"mcl_farming_pumpkin_side.png", --left
|
||||
"mcl_farming_pumpkin_side.png", --right
|
||||
"mcl_farming_pumpkin_top.png", --left
|
||||
},
|
||||
gotten_texture = gotten_texture,
|
||||
drops = {{ name = "mcl_throwing:snowball", chance = 1, min = 0, max = 15 }},
|
||||
|
|
|
@ -26,7 +26,7 @@ local strider = {
|
|||
visual = "mesh",
|
||||
mesh = "extra_mobs_strider.b3d",
|
||||
textures = { {
|
||||
"extra_mobs_strider.png",
|
||||
"mobs_mc_strider.png",
|
||||
} },
|
||||
visual_size = {x=3, y=3},
|
||||
sounds = {
|
||||
|
@ -69,10 +69,10 @@ local strider = {
|
|||
if minetest.find_node_near(self.object:get_pos(), 2, {"mcl_core:lava_source","mcl_core:lava_flowing","mcl_nether:nether_lava_source","mcl_nether:nether_lava_flowing"}) then
|
||||
self.walk_velocity = 2
|
||||
self.run_velocity = 4
|
||||
self.base_texture[1] = "extra_mobs_strider.png"
|
||||
self.base_texture[1] = "mobs_mc_strider.png"
|
||||
self.shaking = false
|
||||
else
|
||||
self.base_texture[1] = "extra_mobs_strider_cold.png"
|
||||
self.base_texture[1] = "mobs_mc_strider_cold.png"
|
||||
self.walk_velocity = .5
|
||||
self.run_velocity = 1
|
||||
self.shaking = true
|
||||
|
@ -133,7 +133,7 @@ local strider = {
|
|||
local item = clicker:get_wielded_item()
|
||||
if item:get_name() == "mcl_mobitems:saddle" and self.saddle ~= "yes" then
|
||||
self.base_texture = {
|
||||
"extra_mobs_strider.png",
|
||||
"mobs_mc_strider.png",
|
||||
"mobs_mc_pig_saddle.png", -- saddle
|
||||
}
|
||||
self.object:set_properties({
|
||||
|
@ -201,7 +201,7 @@ baby_strider.collisionbox = {-.3, -0.01, -.3, .3, 0.94, .3}
|
|||
baby_strider.xp_min = 13
|
||||
baby_strider.xp_max = 13
|
||||
textures = { {
|
||||
"extra_mobs_strider.png",
|
||||
"mobs_mc_strider.png",
|
||||
"extra_mobs_trans.png",
|
||||
} }
|
||||
baby_strider.walk_velocity = 1.2
|
||||
|
|
|
@ -47,11 +47,11 @@ local function set_textures(self)
|
|||
end
|
||||
self._base_color = base_colors[math.random(#base_colors)]
|
||||
self._pattern_color = pattern_colors[math.random(#pattern_colors)]
|
||||
self._pattern = "extra_mobs_tropical_fish_pattern_"..self._type.."_"..math.random(6)..".png"
|
||||
self._pattern = "mobs_mc_tropical_fish_pattern_"..self._type.."_"..math.random(6)..".png"
|
||||
end
|
||||
self.object:set_properties({
|
||||
textures = {
|
||||
"(extra_mobs_tropical_fish_"..self._type..".png^[colorize:"..self._base_color..":127)^("..self._pattern.."^[colorize:"..self._pattern_color..")",
|
||||
"(mobs_mc_tropical_fish_"..self._type..".png^[colorize:"..self._base_color..":127)^("..self._pattern.."^[colorize:"..self._pattern_color..")",
|
||||
},
|
||||
mesh="extra_mobs_tropical_fish_"..self._type..".b3d"
|
||||
})
|
||||
|
@ -72,7 +72,7 @@ local tropical_fish = {
|
|||
collisionbox = {-0.2, 0.0, -0.2, 0.2, 0.1, 0.2},
|
||||
visual = "mesh",
|
||||
mesh = "extra_mobs_tropical_fish_a.b3d",
|
||||
textures = { "extra_mobs_tropical_fish_a.png" }, -- to be populated on_spawn
|
||||
textures = { "mobs_mc_tropical_fish_a.png" }, -- to be populated on_spawn
|
||||
sounds = {},
|
||||
animation = {
|
||||
stand_start = 0,
|
||||
|
|
|
@ -548,7 +548,7 @@ local function get_recipe_fs(data, iY)
|
|||
shapeless and "shapeless" or "furnace"
|
||||
|
||||
if recipe.type == "cooking" then
|
||||
icon = "craftguide_furnace.png"
|
||||
icon = "mcl_craftguide_furnace.png"
|
||||
elseif not custom_recipe then
|
||||
icon = fmt("craftguide_%s.png", icon)
|
||||
end
|
||||
|
@ -579,7 +579,7 @@ local function get_recipe_fs(data, iY)
|
|||
sfinv_only and 6.85 or iY + 2.35,
|
||||
0.9,
|
||||
0.7,
|
||||
"craftguide_arrow.png")
|
||||
"mcl_craftguide_arrow.png")
|
||||
|
||||
if recipe.type == "fuel" then
|
||||
fs[#fs + 1] = fmt(FMT.image,
|
||||
|
@ -609,7 +609,7 @@ local function get_recipe_fs(data, iY)
|
|||
sfinv_only and 6.83 or iY + 2.33,
|
||||
0.6,
|
||||
0.4,
|
||||
"craftguide_arrow.png")
|
||||
"mcl_craftguide_arrow.png")
|
||||
|
||||
fs[#fs + 1] = fmt(FMT.image,
|
||||
output_X + 1.6,
|
||||
|
@ -643,15 +643,15 @@ local function make_formspec(name)
|
|||
ESC(S("Decrease window size")))
|
||||
|
||||
fs[#fs + 1] = fmt([[
|
||||
image_button[%f,0.12;0.8,0.8;craftguide_zoomin_icon.png;size_inc;]
|
||||
image_button[%f,0.12;0.8,0.8;craftguide_zoomout_icon.png;size_dec;] ]],
|
||||
image_button[%f,0.12;0.8,0.8;mcl_craftguide_zoomin_icon.png;size_inc;]
|
||||
image_button[%f,0.12;0.8,0.8;mcl_craftguide_zoomout_icon.png;size_dec;] ]],
|
||||
data.iX * 0.47,
|
||||
data.iX * 0.47 + 0.6)
|
||||
end
|
||||
|
||||
fs[#fs + 1] = [[
|
||||
image_button[2.4,0.12;0.8,0.8;craftguide_search_icon.png;search;]
|
||||
image_button[3.05,0.12;0.8,0.8;craftguide_clear_icon.png;clear;]
|
||||
image_button[2.4,0.12;0.8,0.8;mcl_craftguide_search_icon.png;search;]
|
||||
image_button[3.05,0.12;0.8,0.8;mcl_craftguide_clear_icon.png;clear;]
|
||||
field_close_on_enter[filter;false]
|
||||
]]
|
||||
|
||||
|
@ -670,8 +670,8 @@ local function make_formspec(name)
|
|||
ESC(colorize("#383838", fmt("%s / %u", data.pagenum, data.pagemax))))
|
||||
|
||||
fs[#fs + 1] = fmt([[
|
||||
image_button[%f,0.12;0.8,0.8;craftguide_prev_icon.png;prev;]
|
||||
image_button[%f,0.12;0.8,0.8;craftguide_next_icon.png;next;] ]],
|
||||
image_button[%f,0.12;0.8,0.8;mcl_craftguide_prev_icon.png;prev;]
|
||||
image_button[%f,0.12;0.8,0.8;mcl_craftguide_next_icon.png;next;] ]],
|
||||
sfinv_only and 5.5 or data.iX - 3.1,
|
||||
sfinv_only and 7.3 or (data.iX - 1.2) - (data.iX >= 11 and 0.08 or 0))
|
||||
|
||||
|
|
|
@ -68,8 +68,8 @@ S("Minetest can be played alone or online together with multiple players. Online
|
|||
|
||||
S("Minetest is usually bundled with a simple default game, named “Minetest Game” (shown in images 1 and 2). You probably already have it. Other games for Minetest can be downloaded from the official Minetest forums <https://forum.minetest.net/viewforum.php?f=48>."),
|
||||
|
||||
images = {{image="doc_basics_gameplay_mtg_1.png"}, {image="doc_basics_gameplay_mtg_2.png"}, {image="doc_basics_gameplay_carbone_ng.png"}, {image="doc_basics_gameplay_lott.png"}, {image="doc_basics_gameplay_pixture.png"}, {image="doc_basics_gameplay_outback.png"}, {image="doc_basics_gameplay_moontest.png"},
|
||||
{image="doc_basics_gameplay_hades.png"}, {image="doc_basics_gameplay_xtraores_xtension.png"},}
|
||||
images = {{image="mcl_doc_basics_gameplay_mtg_1.png"}, {image="mcl_doc_basics_gameplay_mtg_2.png"}, {image="mcl_doc_basics_gameplay_carbone_ng.png"}, {image="mcl_doc_basics_gameplay_lott.png"}, {image="mcl_doc_basics_gameplay_pixture.png"}, {image="mcl_doc_basics_gameplay_outback.png"}, {image="mcl_doc_basics_gameplay_moontest.png"},
|
||||
{image="mcl_doc_basics_gameplay_hades.png"}, {image="mcl_doc_basics_gameplay_xtraores_xtension.png"},}
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "sneak", {
|
||||
|
@ -83,7 +83,7 @@ S("• Sneak: [Shift]").."\n\n"..
|
|||
S("Sneaking only works when you stand on solid ground, are not in a liquid and don't climb.").."\n\n"..
|
||||
|
||||
S("Sneaking might be disabled by mods. In this case, you still walk slower by sneaking, but you will no longer be stopped at ledges."),
|
||||
images = { { image = "doc_basics_sneak.png" } },
|
||||
images = { { image = "mcl_doc_basics_sneak.png" } },
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "controls", {
|
||||
|
@ -177,7 +177,7 @@ S("Some blocks reduce breath. While being with the head in a block which causes
|
|||
S("Damage can be disabled on any world. Without damage, players are immortal and health and breath are unimportant.").."\n\n"..
|
||||
|
||||
S("In multi-player mode, the name of other players is written above their head."),
|
||||
images = {{image="doc_basics_players_sam.png"}, {image="doc_basics_players_lott.png"}, {image="doc_basics_players_flat.png"}},
|
||||
images = {{image="mcl_doc_basics_players_sam.png"}, {image="mcl_doc_basics_players_lott.png"}, {image="mcl_doc_basics_players_flat.png"}},
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "items", {
|
||||
|
@ -196,7 +196,7 @@ S("• Group memberships: See “Basics > Groups”").."\n"..
|
|||
S("• May be used for crafting or cooking"),
|
||||
|
||||
-- MCL2: Items cannot be taken by punching
|
||||
images = {{image="doc_basics_inventory_detail.png"}, {image="doc_basics_items_dropped.png"}},
|
||||
images = {{image="mcl_doc_basics_inventory_detail.png"}, {image="mcl_doc_basics_items_dropped.png"}},
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "tools", {
|
||||
|
@ -209,7 +209,7 @@ S("A common subset of tools is mining tools. These are important to break all ki
|
|||
S("When nothing is wielded, players use their hand which may act as tool and weapon.").."\n\n"..
|
||||
|
||||
S("Many tools will wear off when using them and may eventually get destroyed. The damage is displayed in a damage bar below the tool icon. If no damage bar is shown, the tool is in mint condition. Tools may be repairable by crafting, see “Basics > Crafting”."),
|
||||
images = {{image="doc_basics_tools.png"}, {image="doc_basics_tools_mining.png"}},
|
||||
images = {{image="mcl_doc_basics_tools.png"}, {image="mcl_doc_basics_tools_mining.png"}},
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "weapons", {
|
||||
|
@ -240,7 +240,7 @@ S("“Pointing” means looking at something in range with the crosshair. Pointi
|
|||
S("To point something, it must be in the pointing range (also just called “range”) of your wielded item. There's a default range when you are not wielding anything. A pointed thing will be outlined or highlighted (depending on your settings). Pointing is not possible with the 3rd person front camera.").."\n\n"..
|
||||
|
||||
S("A few things can not be pointed. Most blocks are pointable. A few blocks, like air, can never be pointed. Other blocks, like liquids can only be pointed by special items."),
|
||||
images = {{ image = "doc_basics_pointing.png" }},
|
||||
images = {{ image = "mcl_doc_basics_pointing.png" }},
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "cam", {
|
||||
|
@ -259,7 +259,7 @@ S("Zooming is a gameplay feature that might be enabled or disabled by the game.
|
|||
|
||||
S("• Switch camera mode: [F7]").."\n"..
|
||||
S("• Zoom: [Z]"),
|
||||
images = {{image="doc_basics_camera_ego.png"}, {image="doc_basics_camera_behind.png"}, {image="doc_basics_camera_front.png"}}
|
||||
images = {{image="mcl_doc_basics_camera_ego.png"}, {image="mcl_doc_basics_camera_behind.png"}, {image="mcl_doc_basics_camera_front.png"}}
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "nodes", {
|
||||
|
@ -277,7 +277,7 @@ S("• Climbable: While you are at a climbable block, you won't fall and you can
|
|||
S("• Drowning damage: See the entry “Basics > Player”").."\n"..
|
||||
S("• Liquids: See the entry “Basics > Liquids”").."\n"..
|
||||
S("• Group memberships: Group memberships are used to determine mining properties, crafting, interactions between blocks and more"),
|
||||
images = {{image="doc_basics_nodes.png"}}
|
||||
images = {{image="mcl_doc_basics_nodes.png"}}
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "mine", {
|
||||
|
@ -307,7 +307,7 @@ S("To build your wielded block, point at a block in the world and right-click. I
|
|||
S("Blocks can almost always be built at pointable blocks. One exception are blocks attached to the floor; these can only be built on the floor.").."\n\n"..
|
||||
|
||||
S("Normally, blocks are built in front of the pointed side of the pointed block. A few blocks are different: When you try to build at them, they are replaced."),
|
||||
images = {{image="doc_basics_build.png"}},
|
||||
images = {{image="mcl_doc_basics_build.png"}},
|
||||
}})
|
||||
|
||||
|
||||
|
@ -345,15 +345,15 @@ S("• If you fall into a liquid, you will be slowed down on impact (but don't s
|
|||
|
||||
S("Liquids are often not pointable. But some special items are able to point all liquids."),
|
||||
images = {
|
||||
{ image="doc_basics_liquids_types.png",
|
||||
{ image="mcl_doc_basics_liquids_types.png",
|
||||
caption="A source liquid and its flowing liquids" },
|
||||
{ image="doc_basics_liquids_renewable_1.png",
|
||||
{ image="mcl_doc_basics_liquids_renewable_1.png",
|
||||
caption="Renewable liquids need to be arranged like this to create a new source block" },
|
||||
{ image="doc_basics_liquids_renewable_2.png",
|
||||
{ image="mcl_doc_basics_liquids_renewable_2.png",
|
||||
caption="A new liquid source is born" },
|
||||
{ image="doc_basics_liquids_nonrenewable.png",
|
||||
{ image="mcl_doc_basics_liquids_nonrenewable.png",
|
||||
caption="Non-renewable liquids creates a flowing liquid (F) instead" },
|
||||
{ image="doc_basics_liquids_range.png",
|
||||
{ image="mcl_doc_basics_liquids_range.png",
|
||||
caption="Liquid with a flowing range of 2" },
|
||||
},
|
||||
},
|
||||
|
@ -385,9 +385,9 @@ S("In some crafting recipes, some input items do not need to be a concrete item,
|
|||
|
||||
S("Rarely, crafting recipes have replacements. This means, whenever you perform a craft, some items in the crafting grid will not be consumed, but instead will be replaced by another item."),
|
||||
images = {
|
||||
{image="doc_basics_craft_grid.png"}, {image="doc_basics_craft_shaped.png"},
|
||||
{image="doc_basics_craft_shapeless_1.png"}, {image="doc_basics_craft_shapeless_2.png"}, {image="doc_basics_craft_repair.png"},
|
||||
{image="doc_basics_craft_groups_1.png"}, {image="doc_basics_craft_groups_2.png"}, {image="doc_basics_craft_groups_3.png"},
|
||||
{image="mcl_doc_basics_craft_grid.png"}, {image="mcl_doc_basics_craft_shaped.png"},
|
||||
{image="mcl_doc_basics_craft_shapeless_1.png"}, {image="mcl_doc_basics_craft_shapeless_2.png"}, {image="mcl_doc_basics_craft_repair.png"},
|
||||
{image="mcl_doc_basics_craft_groups_1.png"}, {image="mcl_doc_basics_craft_groups_2.png"}, {image="mcl_doc_basics_craft_groups_3.png"},
|
||||
},
|
||||
}})
|
||||
|
||||
|
@ -414,7 +414,7 @@ S("• Select next item in hotbar: [Mouse wheel down] or [N]").."\n"..
|
|||
S("• Select item in hotbar directly: [1]-[9]").."\n\n"..
|
||||
|
||||
S("The selected item is also your wielded item."),
|
||||
images = {{image="doc_basics_hotbar.png"}, {image="doc_basics_hotbar_relations.png"}},
|
||||
images = {{image="mcl_doc_basics_hotbar.png"}, {image="mcl_doc_basics_hotbar_relations.png"}},
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "minimap", {
|
||||
|
@ -437,7 +437,7 @@ S("In some games, the minimap may be disabled.").."\n\n"..
|
|||
|
||||
S("• Toggle minimap mode: [F9]").."\n"..
|
||||
S("• Toggle minimap rotation mode: [Shift]+[F9]"),
|
||||
images = {{image="doc_basics_minimap_map.png"}, {image="doc_basics_minimap_radar.png"}, {image="doc_basics_minimap_round.png"}},
|
||||
images = {{image="mcl_doc_basics_minimap_map.png"}, {image="mcl_doc_basics_minimap_radar.png"}, {image="mcl_doc_basics_minimap_round.png"}},
|
||||
}})
|
||||
|
||||
doc.add_entry("basics", "inventory", {
|
||||
|
@ -468,7 +468,7 @@ S("Throwing away: If you hold an item stack and click with it somewhere outside
|
|||
|
||||
S("Quick transfer: You can quickly transfer an item stack to/from the player inventory to/from another item's inventory slot like a furnace, chest, or any other item with an inventory slot when that item's inventory is accessed. The target inventory is generally the most relevant inventory in this context.").."\n"..
|
||||
S("• Sneak+Left click: Automatically transfer item stack"),
|
||||
images = {{image="doc_basics_inventory.png"}}
|
||||
images = {{image="mcl_doc_basics_inventory.png"}}
|
||||
}})
|
||||
|
||||
doc.add_entry("advanced", "online", {
|
||||
|
@ -725,7 +725,7 @@ S("Artificial light will lose one level of brightness for each transparent or se
|
|||
S("Sunlight will preserve its brightness as long it only passes fully transparent blocks. When it passes through a semi-transparent block, it turns to artificial light. Image 2 shows the difference.").."\n\n"..
|
||||
|
||||
S("Note that “transparency” here only means that the block is able to carry brightness from its neighboring blocks. It is possible for a block to be transparent to light but you can't see trough the other side."),
|
||||
images = {{image="doc_basics_light_torch.png"}, {image="doc_basics_light_test.png"}}
|
||||
images = {{image="mcl_doc_basics_light_torch.png"}, {image="mcl_doc_basics_light_test.png"}}
|
||||
}})
|
||||
|
||||
doc.add_entry("advanced", "coordinates", {
|
||||
|
|
|
@ -10,7 +10,7 @@ local S = minetest.get_translator(minetest.get_current_modname())
|
|||
awards.register_achievement("mcl_buildWorkBench", {
|
||||
title = S("Benchmarking"),
|
||||
description = S("Craft a crafting table from 4 wooden planks."),
|
||||
icon = "crafting_workbench_front.png",
|
||||
icon = "mcl_crafting_table_workbench_front.png",
|
||||
trigger = {
|
||||
type = "craft",
|
||||
item = "mcl_crafting_table:crafting_table",
|
||||
|
@ -46,7 +46,7 @@ awards.register_achievement("mcl:buildFurnace", {
|
|||
awards.register_achievement("mcl:buildHoe", {
|
||||
title = S("Time to Farm!"),
|
||||
description = S("Use a crafting table to craft a wooden hoe from wooden planks and sticks."),
|
||||
icon = "farming_tool_woodhoe.png",
|
||||
icon = "mcl_farming_tool_woodhoe.png",
|
||||
trigger = {
|
||||
type = "craft",
|
||||
item = "mcl_farming:hoe_wood",
|
||||
|
@ -58,7 +58,7 @@ awards.register_achievement("mcl:buildHoe", {
|
|||
awards.register_achievement("mcl:makeBread", {
|
||||
title = S("Bake Bread"),
|
||||
description = S("Use wheat to craft a bread."),
|
||||
icon = "farming_bread.png",
|
||||
icon = "mcl_farming_bread.png",
|
||||
trigger = {
|
||||
type = "craft",
|
||||
item = "mcl_farming:bread",
|
||||
|
@ -348,7 +348,7 @@ awards.register_achievement("mcl:countryLode", {
|
|||
awards.register_achievement("mcl:seriousDedication", {
|
||||
title = S("Serious Dedication"),
|
||||
description = S("Use a Netherite Ingot to upgrade a hoe, and then completely reevaluate your life choices."),
|
||||
icon = "farming_tool_netheritehoe.png",
|
||||
icon = "mcl_farming_tool_netheritehoe.png",
|
||||
type = "Challenge",
|
||||
group = "Husbandry",
|
||||
})
|
||||
|
|
|
@ -333,7 +333,7 @@ filtername["brew"] = S("Brewing")
|
|||
filtername["matr"] = S("Materials")
|
||||
filtername["inv"] = S("Survival Inventory")
|
||||
|
||||
--local dark_bg = "crafting_creative_bg_dark.png"
|
||||
--local dark_bg = "mcl_crafting_table_creative_bg_dark.png"
|
||||
|
||||
--[[local function reset_menu_item_bg()
|
||||
bg["blocks"] = dark_bg
|
||||
|
@ -476,7 +476,7 @@ function mcl_inventory.set_creative_formspec(player)
|
|||
mcl_player.get_player_formspec_model(player, 4.75, 0.45, 2.25, 2.75, ""),
|
||||
|
||||
-- Crafting guide button
|
||||
"image_button[11.575,0.825;1.1,1.1;craftguide_book.png;__mcl_craftguide;]",
|
||||
"image_button[11.575,0.825;1.1,1.1;mcl_craftguide_book.png;__mcl_craftguide;]",
|
||||
"tooltip[__mcl_craftguide;" .. F(S("Recipe book")) .. "]",
|
||||
|
||||
-- Help button
|
||||
|
@ -522,8 +522,8 @@ function mcl_inventory.set_creative_formspec(player)
|
|||
|
||||
-- Page buttons
|
||||
"label[11.65,4.33;" .. F(S("@1 / @2", pagenum, pagemax)) .. "]",
|
||||
"image_button[11.575,4.58;1.1,1.1;crafting_creative_prev.png^[transformR270;creative_prev;]",
|
||||
"image_button[11.575,5.83;1.1,1.1;crafting_creative_next.png^[transformR270;creative_next;]",
|
||||
"image_button[11.575,4.58;1.1,1.1;mcl_crafting_table_creative_prev.png^[transformR270;creative_prev;]",
|
||||
"image_button[11.575,5.83;1.1,1.1;mcl_crafting_table_creative_next.png^[transformR270;creative_next;]",
|
||||
})
|
||||
end
|
||||
|
||||
|
@ -533,9 +533,9 @@ function mcl_inventory.set_creative_formspec(player)
|
|||
local function tab(current_tab, this_tab)
|
||||
local bg_img
|
||||
if current_tab == this_tab then
|
||||
bg_img = "crafting_creative_active" .. button_bg_postfix[this_tab] .. ".png"
|
||||
bg_img = "mcl_crafting_table_creative_active" .. button_bg_postfix[this_tab] .. ".png"
|
||||
else
|
||||
bg_img = "crafting_creative_inactive" .. button_bg_postfix[this_tab] .. ".png"
|
||||
bg_img = "mcl_crafting_table_creative_inactive" .. button_bg_postfix[this_tab] .. ".png"
|
||||
end
|
||||
return table.concat({
|
||||
"style[" .. this_tab .. ";border=false;bgimg=;bgimg_pressed=;noclip=true]",
|
||||
|
@ -561,7 +561,7 @@ function mcl_inventory.set_creative_formspec(player)
|
|||
"list[current_player;main;0.375,7.375;9,1;]",
|
||||
|
||||
-- Trash
|
||||
mcl_formspec.get_itemslot_bg_v4(11.625, 7.375, 1, 1, nil, "crafting_creative_trash.png"),
|
||||
mcl_formspec.get_itemslot_bg_v4(11.625, 7.375, 1, 1, nil, "mcl_crafting_table_creative_trash.png"),
|
||||
"list[detached:trash;main;11.625,7.375;1,1;]",
|
||||
|
||||
main_list,
|
||||
|
|
|
@ -63,7 +63,7 @@ local function build_page(player, content, inventory, tabname)
|
|||
"style[" .. btn_name .. ";border=false;bgimg=;bgimg_pressed=;noclip=true]",
|
||||
"image[" ..
|
||||
(0.2 + (i - 1) * 1.6) ..
|
||||
",-1.34;1.5,1.44;" .. (tabname == d.id and "crafting_creative_active.png" or "crafting_creative_inactive.png") ..
|
||||
",-1.34;1.5,1.44;" .. (tabname == d.id and "mcl_crafting_table_creative_active.png" or "mcl_crafting_table_creative_inactive.png") ..
|
||||
"]",
|
||||
"item_image_button[" .. (0.44 + (i - 1) * 1.6) .. ",-1.1;1,1;" .. d.item_icon .. ";" .. btn_name .. ";]",
|
||||
"tooltip[" .. btn_name .. ";" .. F(d.description) .. "]"
|
||||
|
@ -117,7 +117,7 @@ local main_page_static = table.concat({
|
|||
"list[current_player;craftpreview;10.375,1.5;1,1;]",
|
||||
|
||||
--Crafting guide button
|
||||
"image_button[6.575,4.075;1.1,1.1;craftguide_book.png;__mcl_craftguide;]",
|
||||
"image_button[6.575,4.075;1.1,1.1;mcl_craftguide_book.png;__mcl_craftguide;]",
|
||||
"tooltip[__mcl_craftguide;" .. F(S("Recipe book")) .. "]",
|
||||
|
||||
--Help button
|
||||
|
|
|
@ -36,7 +36,7 @@ local function active_formspec(fuel_percent, item_percent)
|
|||
|
||||
-- Craft guide button temporarily removed due to Minetest bug.
|
||||
-- TODO: Add it back when the Minetest bug is fixed.
|
||||
--"image_button[8,0;1,1;craftguide_book.png;craftguide;]"..
|
||||
--"image_button[8,0;1,1;mcl_craftguide_book.png;craftguide;]"..
|
||||
--"tooltip[craftguide;"..minetest.formspec_escape(S("Recipe book")).."]"..
|
||||
|
||||
"listring[context;dst]",
|
||||
|
@ -74,7 +74,7 @@ local inactive_formspec = table.concat({
|
|||
|
||||
-- Craft guide button temporarily removed due to Minetest bug.
|
||||
-- TODO: Add it back when the Minetest bug is fixed.
|
||||
--"image_button[8,0;1,1;craftguide_book.png;craftguide;]"..
|
||||
--"image_button[8,0;1,1;mcl_craftguide_book.png;craftguide;]"..
|
||||
--"tooltip[craftguide;"..minetest.formspec_escape(S("Recipe book")).."]"..
|
||||
|
||||
"listring[context;dst]",
|
||||
|
|
|
@ -32,7 +32,7 @@ local cp_tt = S("Turns into concrete on water contact")
|
|||
minetest.register_node("mcl_colorblocks:hardened_clay", {
|
||||
description = S("Terracotta"),
|
||||
_doc_items_longdesc = S("Terracotta is a basic building material which comes in many different colors. This particular block is uncolored."),
|
||||
tiles = {"hardened_clay.png"},
|
||||
tiles = {"mcl_colorblocks_hardened_clay.png"},
|
||||
stack_max = 64,
|
||||
groups = {pickaxey=1, hardened_clay=1,building_block=1, material_stone=1},
|
||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
|
@ -82,7 +82,7 @@ for _, row in ipairs(block.dyes) do
|
|||
_doc_items_longdesc = ldesc_hc,
|
||||
_doc_items_create_entry = create_entry,
|
||||
_doc_items_entry_name = ename_hc,
|
||||
tiles = {"hardened_clay_stained_"..name..".png"},
|
||||
tiles = {"mcl_colorblocks_hardened_clay_stained_"..name..".png"},
|
||||
groups = {pickaxey=1, hardened_clay=1,building_block=1, material_stone=1},
|
||||
stack_max = 64,
|
||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
|
|
|
@ -16,7 +16,7 @@ mcl_crafting_table.formspec = table.concat({
|
|||
mcl_formspec.get_itemslot_bg_v4(2.25, 0.75, 3, 3),
|
||||
"list[current_player;craft;2.25,0.75;3,3;]",
|
||||
|
||||
"image[6.125,2;1.5,1;gui_crafting_arrow.png]",
|
||||
"image[6.125,2;1.5,1;mcl_crafting_table_crafting_arrow.png]",
|
||||
|
||||
mcl_formspec.get_itemslot_bg_v4(8.2, 2, 1, 1, 0.2),
|
||||
"list[current_player;craftpreview;8.2,2;1,1;]",
|
||||
|
@ -33,7 +33,7 @@ mcl_crafting_table.formspec = table.concat({
|
|||
"listring[current_player;main]",
|
||||
|
||||
--Crafting guide button
|
||||
"image_button[0.325,1.95;1.1,1.1;craftguide_book.png;__mcl_craftguide;]",
|
||||
"image_button[0.325,1.95;1.1,1.1;mcl_craftguide_book.png;__mcl_craftguide;]",
|
||||
"tooltip[__mcl_craftguide;" .. F(S("Recipe book")) .. "]",
|
||||
})
|
||||
|
||||
|
@ -55,8 +55,8 @@ minetest.register_node("mcl_crafting_table:crafting_table", {
|
|||
_doc_items_usagehelp = S("Rightclick the crafting table to access the 3×3 crafting grid."),
|
||||
_doc_items_hidden = false,
|
||||
is_ground_content = false,
|
||||
tiles = { "crafting_workbench_top.png", "default_wood.png", "crafting_workbench_side.png",
|
||||
"crafting_workbench_side.png", "crafting_workbench_front.png", "crafting_workbench_front.png" },
|
||||
tiles = { "mcl_crafting_table_workbench_top.png", "default_wood.png", "mcl_crafting_table_workbench_side.png",
|
||||
"mcl_crafting_table_workbench_side.png", "mcl_crafting_table_workbench_front.png", "mcl_crafting_table_workbench_front.png" },
|
||||
paramtype2 = "facedir",
|
||||
groups = { handy = 1, axey = 1, deco_block = 1, material_wood = 1, flammable = -1 },
|
||||
on_rightclick = function(pos, node, player, itemstack)
|
||||
|
|
|
@ -4,13 +4,13 @@ for i=1, 7 do
|
|||
local texture, sel_height
|
||||
if i < 3 then
|
||||
sel_height = -5/16
|
||||
texture = "farming_carrot_1.png"
|
||||
texture = "mcl_farming_carrot_1.png"
|
||||
elseif i < 5 then
|
||||
sel_height = -4/16
|
||||
texture = "farming_carrot_2.png"
|
||||
texture = "mcl_farming_carrot_2.png"
|
||||
else
|
||||
sel_height = -3/16
|
||||
texture = "farming_carrot_3.png"
|
||||
texture = "mcl_farming_carrot_3.png"
|
||||
end
|
||||
|
||||
local create, name, longdesc
|
||||
|
@ -57,9 +57,9 @@ minetest.register_node("mcl_farming:carrot", {
|
|||
place_param2 = 3,
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
tiles = {"farming_carrot_4.png"},
|
||||
inventory_image = "farming_carrot_4.png",
|
||||
wield_image = "farming_carrot_4.png",
|
||||
tiles = {"mcl_farming_carrot_4.png"},
|
||||
inventory_image = "mcl_farming_carrot_4.png",
|
||||
wield_image = "mcl_farming_carrot_4.png",
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
|
@ -85,7 +85,7 @@ minetest.register_craftitem("mcl_farming:carrot_item", {
|
|||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Carrots can be eaten and planted. Pigs and rabbits like carrots."),
|
||||
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant the carrot. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
|
||||
inventory_image = "farming_carrot.png",
|
||||
inventory_image = "mcl_farming_carrot.png",
|
||||
groups = {food = 2, eatable = 3, compostability = 65},
|
||||
_mcl_saturation = 3.6,
|
||||
on_secondary_use = minetest.item_eat(3),
|
||||
|
@ -95,7 +95,7 @@ minetest.register_craftitem("mcl_farming:carrot_item", {
|
|||
minetest.register_craftitem("mcl_farming:carrot_item_gold", {
|
||||
description = S("Golden Carrot"),
|
||||
_doc_items_longdesc = S("A golden carrot is a precious food item which can be eaten. It is really, really filling!"),
|
||||
inventory_image = "farming_carrot_gold.png",
|
||||
inventory_image = "mcl_farming_carrot_gold.png",
|
||||
on_place = minetest.item_eat(6),
|
||||
on_secondary_use = minetest.item_eat(6),
|
||||
groups = { brewitem = 1, food = 2, eatable = 6 },
|
||||
|
|
|
@ -54,7 +54,7 @@ local uses = {
|
|||
stone = 132,
|
||||
iron = 251,
|
||||
gold = 33,
|
||||
diamond = 1562,
|
||||
diamond = 1562,
|
||||
netherite = 2031,
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ minetest.register_tool("mcl_farming:hoe_wood", {
|
|||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
_doc_items_hidden = false,
|
||||
inventory_image = "farming_tool_woodhoe.png",
|
||||
inventory_image = "mcl_farming_tool_woodhoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.wood),
|
||||
groups = { tool=1, hoe=1, enchantability=15 },
|
||||
|
@ -111,7 +111,7 @@ minetest.register_tool("mcl_farming:hoe_stone", {
|
|||
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.stone),
|
||||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
inventory_image = "farming_tool_stonehoe.png",
|
||||
inventory_image = "mcl_farming_tool_stonehoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.stone),
|
||||
groups = { tool=1, hoe=1, enchantability=5 },
|
||||
|
@ -149,7 +149,7 @@ minetest.register_tool("mcl_farming:hoe_iron", {
|
|||
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.iron),
|
||||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
inventory_image = "farming_tool_steelhoe.png",
|
||||
inventory_image = "mcl_farming_tool_steelhoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.iron),
|
||||
groups = { tool=1, hoe=1, enchantability=14 },
|
||||
|
@ -195,7 +195,7 @@ minetest.register_tool("mcl_farming:hoe_gold", {
|
|||
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.gold),
|
||||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
inventory_image = "farming_tool_goldhoe.png",
|
||||
inventory_image = "mcl_farming_tool_goldhoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.gold),
|
||||
groups = { tool=1, hoe=1, enchantability=22 },
|
||||
|
@ -242,7 +242,7 @@ minetest.register_tool("mcl_farming:hoe_diamond", {
|
|||
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.diamond),
|
||||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
inventory_image = "farming_tool_diamondhoe.png",
|
||||
inventory_image = "mcl_farming_tool_diamondhoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.diamond),
|
||||
groups = { tool=1, hoe=1, enchantability=10 },
|
||||
|
@ -274,26 +274,26 @@ minetest.register_craft({
|
|||
{"mcl_core:diamond", "mcl_core:diamond"},
|
||||
{"mcl_core:stick", ""},
|
||||
{"mcl_core:stick", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_tool("mcl_farming:hoe_netherite", {
|
||||
description = S("Netherite Hoe"),
|
||||
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.netherite),
|
||||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
inventory_image = "farming_tool_netheritehoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.netherite),
|
||||
groups = { tool=1, hoe=1, enchantability=10, fire_immune=1 },
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.25,
|
||||
damage_groups = { fleshy = 4, },
|
||||
punch_attack_uses = uses.netherite,
|
||||
},
|
||||
_repair_material = "mcl_nether:netherite_ingot",
|
||||
_mcl_toollike_wield = true,
|
||||
_mcl_diggroups = {
|
||||
hoey = { speed = 8, level = 5, uses = uses.netherite }
|
||||
},
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_tool("mcl_farming:hoe_netherite", {
|
||||
description = S("Netherite Hoe"),
|
||||
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.netherite),
|
||||
_doc_items_longdesc = hoe_longdesc,
|
||||
_doc_items_usagehelp = hoe_usagehelp,
|
||||
inventory_image = "mcl_farming_tool_netheritehoe.png",
|
||||
wield_scale = mcl_vars.tool_wield_scale,
|
||||
on_place = hoe_on_place_function(uses.netherite),
|
||||
groups = { tool=1, hoe=1, enchantability=10, fire_immune=1 },
|
||||
tool_capabilities = {
|
||||
full_punch_interval = 0.25,
|
||||
damage_groups = { fleshy = 4, },
|
||||
punch_attack_uses = uses.netherite,
|
||||
},
|
||||
_repair_material = "mcl_nether:netherite_ingot",
|
||||
_mcl_toollike_wield = true,
|
||||
_mcl_diggroups = {
|
||||
hoey = { speed = 8, level = 5, uses = uses.netherite }
|
||||
},
|
||||
})
|
||||
|
|
|
@ -20,7 +20,7 @@ local melon_base_def = {
|
|||
description = S("Melon"),
|
||||
_doc_items_longdesc = S("A melon is a block which can be grown from melon stems, which in turn are grown from melon seeds. It can be harvested for melon slices."),
|
||||
stack_max = 64,
|
||||
tiles = {"farming_melon_top.png", "farming_melon_top.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png"},
|
||||
tiles = {"mcl_farming_melon_top.png", "mcl_farming_melon_top.png", "mcl_farming_melon_side.png", "mcl_farming_melon_side.png", "mcl_farming_melon_side.png", "mcl_farming_melon_side.png"},
|
||||
groups = {
|
||||
handy = 1, axey = 1, plant = 1, building_block = 1, dig_by_piston = 1, dig_immediate_piston = 1,
|
||||
enderman_takable = 1, compostability = 65
|
||||
|
@ -134,7 +134,7 @@ minetest.register_craftitem("mcl_farming:melon_item", {
|
|||
description = S("Melon Slice"),
|
||||
_doc_items_longdesc = S("This is a food item which can be eaten."),
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_melon.png",
|
||||
inventory_image = "mcl_farming_melon.png",
|
||||
on_place = minetest.item_eat(2),
|
||||
on_secondary_use = minetest.item_eat(2),
|
||||
groups = {food = 2, eatable = 2, compostability = 50},
|
||||
|
|
|
@ -90,7 +90,7 @@ minetest.register_craftitem("mcl_farming:potato_item", {
|
|||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Potatoes are food items which can be eaten, cooked in the furnace and planted. Pigs like potatoes."),
|
||||
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant it. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
|
||||
inventory_image = "farming_potato.png",
|
||||
inventory_image = "mcl_farming_potato.png",
|
||||
groups = {food = 2, eatable = 1, compostability = 65, smoker_cookable = 1},
|
||||
_mcl_saturation = 0.6,
|
||||
stack_max = 64,
|
||||
|
@ -102,7 +102,7 @@ minetest.register_craftitem("mcl_farming:potato_item_baked", {
|
|||
description = S("Baked Potato"),
|
||||
_doc_items_longdesc = S("Baked potatoes are food items which are more filling than the unbaked ones."),
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_baked.png",
|
||||
inventory_image = "mcl_farming_potato_baked.png",
|
||||
on_place = minetest.item_eat(5),
|
||||
on_secondary_use = minetest.item_eat(5),
|
||||
groups = {food = 2, eatable = 5, compostability = 85},
|
||||
|
@ -114,7 +114,7 @@ minetest.register_craftitem("mcl_farming:potato_item_poison", {
|
|||
_tt_help = minetest.colorize(mcl_colors.YELLOW, S("60% chance of poisoning")),
|
||||
_doc_items_longdesc = S("This potato doesn't look too healthy. You can eat it to restore hunger points, but there's a 60% chance it will poison you briefly."),
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_poison.png",
|
||||
inventory_image = "mcl_farming_potato_poison.png",
|
||||
on_place = minetest.item_eat(2),
|
||||
on_secondary_use = minetest.item_eat(2),
|
||||
groups = { food = 2, eatable = 2 },
|
||||
|
|
|
@ -98,7 +98,7 @@ local pumpkin_base_def = {
|
|||
_doc_items_usagehelp = S("To carve a face into the pumpkin, use the shears on the side you want to carve."),
|
||||
stack_max = 64,
|
||||
paramtype2 = "facedir",
|
||||
tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png"},
|
||||
tiles = {"mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_side.png"},
|
||||
groups = {
|
||||
handy = 1, axey = 1, plant = 1, building_block = 1, dig_by_piston = 1, dig_immediate_piston = 1,
|
||||
enderman_takable = 1, compostability = 65
|
||||
|
@ -113,7 +113,7 @@ local pumpkin_face_base_def = table.copy(pumpkin_base_def)
|
|||
pumpkin_face_base_def.description = S("Pumpkin")
|
||||
pumpkin_face_base_def._doc_items_longdesc = S("A pumpkin can be worn as a helmet. Pumpkins grow from pumpkin stems, which in turn grow from pumpkin seeds.")
|
||||
pumpkin_face_base_def._doc_items_usagehelp = nil
|
||||
pumpkin_face_base_def.tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face.png"}
|
||||
pumpkin_face_base_def.tiles = {"mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_face.png"}
|
||||
pumpkin_face_base_def.groups.armor=1
|
||||
pumpkin_face_base_def.groups.non_combat_armor=1
|
||||
pumpkin_face_base_def.groups.armor_head=1
|
||||
|
@ -198,7 +198,7 @@ minetest.register_node("mcl_farming:pumpkin_face_light", {
|
|||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
light_source = minetest.LIGHT_MAX,
|
||||
tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face_light.png"},
|
||||
tiles = {"mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_face_light.png"},
|
||||
groups = {handy=1,axey=1, building_block=1, dig_by_piston=1 },
|
||||
sounds = mcl_sounds.node_sound_wood_defaults(),
|
||||
on_construct = function(pos)
|
||||
|
|
|
@ -97,7 +97,7 @@ minetest.register_craftitem("mcl_farming:wheat_item", {
|
|||
description = S("Wheat"),
|
||||
_doc_items_longdesc = S("Wheat is used in crafting. Some animals like wheat."),
|
||||
_doc_items_usagehelp = S("Use the “Place” key on an animal to try to feed it wheat."),
|
||||
inventory_image = "farming_wheat_harvested.png",
|
||||
inventory_image = "mcl_farming_wheat_harvested.png",
|
||||
groups = {craftitem = 1, compostability = 65},
|
||||
})
|
||||
|
||||
|
@ -118,7 +118,7 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("mcl_farming:cookie", {
|
||||
description = S("Cookie"),
|
||||
_doc_items_longdesc = S("This is a food item which can be eaten."),
|
||||
inventory_image = "farming_cookie.png",
|
||||
inventory_image = "mcl_farming_cookie.png",
|
||||
groups = {food = 2, eatable = 2, compostability = 85},
|
||||
_mcl_saturation = 0.4,
|
||||
on_place = minetest.item_eat(2),
|
||||
|
@ -129,7 +129,7 @@ minetest.register_craftitem("mcl_farming:cookie", {
|
|||
minetest.register_craftitem("mcl_farming:bread", {
|
||||
description = S("Bread"),
|
||||
_doc_items_longdesc = S("This is a food item which can be eaten."),
|
||||
inventory_image = "farming_bread.png",
|
||||
inventory_image = "mcl_farming_bread.png",
|
||||
groups = {food = 2, eatable = 5, compostability = 85},
|
||||
_mcl_saturation = 6.0,
|
||||
on_place = minetest.item_eat(5),
|
||||
|
|
|
@ -159,13 +159,13 @@ mcl_flowerpots.register_potted_cube("mcl_core:cactus", {
|
|||
mcl_flowerpots.register_potted_flower("mcl_mushrooms:mushroom_brown", {
|
||||
name = "mushroom_brown",
|
||||
desc = S("Brown Mushroom"),
|
||||
image = "farming_mushroom_brown.png",
|
||||
image = "mcl_mushrooms_mushroom_brown.png",
|
||||
})
|
||||
|
||||
mcl_flowerpots.register_potted_flower("mcl_mushrooms:mushroom_red", {
|
||||
name = "mushroom_red",
|
||||
desc = S("Red Mushroom"),
|
||||
image = "farming_mushroom_red.png",
|
||||
image = "mcl_mushrooms_mushroom_red.png",
|
||||
})
|
||||
|
||||
mcl_flowerpots.register_potted_flower("mcl_core:sapling", {
|
||||
|
|
|
@ -36,7 +36,7 @@ local function active_formspec(fuel_percent, item_percent)
|
|||
|
||||
-- Craft guide button temporarily removed due to Minetest bug.
|
||||
-- TODO: Add it back when the Minetest bug is fixed.
|
||||
--"image_button[8,0;1,1;craftguide_book.png;craftguide;]"..
|
||||
--"image_button[8,0;1,1;mcl_craftguide_book.png;craftguide;]"..
|
||||
--"tooltip[craftguide;"..minetest.formspec_escape(S("Recipe book")).."]"..
|
||||
|
||||
"listring[context;dst]",
|
||||
|
@ -74,7 +74,7 @@ local inactive_formspec = table.concat({
|
|||
|
||||
-- Craft guide button temporarily removed due to Minetest bug.
|
||||
-- TODO: Add it back when the Minetest bug is fixed.
|
||||
--"image_button[8,0;1,1;craftguide_book.png;craftguide;]"..
|
||||
--"image_button[8,0;1,1;mcl_craftguide_book.png;craftguide;]"..
|
||||
--"tooltip[craftguide;"..minetest.formspec_escape(S("Recipe book")).."]"..
|
||||
|
||||
"listring[context;dst]",
|
||||
|
|
|
@ -25,7 +25,7 @@ local grindstone_formspec = table.concat({
|
|||
"image[1.875,1.5;0.5,2.875;grindstone_gui_9.png;2]",
|
||||
"image[4.375,1.5;0.5,2.875;grindstone_gui_9.png;2]",
|
||||
|
||||
"image[5.5,1.95;1.5,1;gui_crafting_arrow.png]",
|
||||
"image[5.5,1.95;1.5,1;mcl_crafting_table_crafting_arrow.png]",
|
||||
|
||||
mcl_formspec.get_itemslot_bg_v4(7.875, 1.9375, 1, 1),
|
||||
"list[context;output;7.875,1.9375;1,1;]",
|
||||
|
|
|
@ -1704,12 +1704,12 @@
|
|||
81,
|
||||
85
|
||||
],
|
||||
"crafting_inventory_creative_survival.png": [
|
||||
"mcl_crafting_table_inventory_creative_survival.png": [
|
||||
195,
|
||||
195,
|
||||
195
|
||||
],
|
||||
"crafting_creative_bg_dark.png": [
|
||||
"mcl_crafting_table_creative_bg_dark.png": [
|
||||
157,
|
||||
157,
|
||||
157
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
32,
|
||||
34
|
||||
],
|
||||
"crafting_formspec_bg.png": [
|
||||
"mcl_crafting_table_formspec_bg.png": [
|
||||
9,
|
||||
9,
|
||||
9
|
||||
|
@ -1734,22 +1734,22 @@
|
|||
85,
|
||||
40
|
||||
],
|
||||
"crafting_creative_inactive_down.png": [
|
||||
"mcl_crafting_table_creative_inactive_down.png": [
|
||||
151,
|
||||
151,
|
||||
151
|
||||
],
|
||||
"crafting_creative_active_down.png": [
|
||||
"mcl_crafting_table_creative_active_down.png": [
|
||||
196,
|
||||
196,
|
||||
196
|
||||
],
|
||||
"crafting_creative_prev.png": [
|
||||
"mcl_crafting_table_creative_prev.png": [
|
||||
254,
|
||||
254,
|
||||
254
|
||||
],
|
||||
"crafting_creative_marker.png": [
|
||||
"mcl_crafting_table_creative_marker.png": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
|
@ -1759,7 +1759,7 @@
|
|||
162,
|
||||
162
|
||||
],
|
||||
"crafting_creative_active.png": [
|
||||
"mcl_crafting_table_creative_active.png": [
|
||||
202,
|
||||
202,
|
||||
202
|
||||
|
@ -1779,17 +1779,17 @@
|
|||
0,
|
||||
0
|
||||
],
|
||||
"crafting_creative_bg.png": [
|
||||
"mcl_crafting_table_creative_bg.png": [
|
||||
207,
|
||||
207,
|
||||
207
|
||||
],
|
||||
"crafting_creative_inactive.png": [
|
||||
"mcl_crafting_table_creative_inactive.png": [
|
||||
157,
|
||||
157,
|
||||
157
|
||||
],
|
||||
"crafting_creative_next.png": [
|
||||
"mcl_crafting_table_creative_next.png": [
|
||||
254,
|
||||
254,
|
||||
254
|
||||
|
@ -1799,12 +1799,12 @@
|
|||
32,
|
||||
34
|
||||
],
|
||||
"crafting_inventory_creative.png": [
|
||||
"mcl_crafting_table_inventory_creative.png": [
|
||||
206,
|
||||
206,
|
||||
206
|
||||
],
|
||||
"crafting_creative_trash.png": [
|
||||
"mcl_crafting_table_creative_trash.png": [
|
||||
144,
|
||||
113,
|
||||
113
|
||||
|
@ -3219,12 +3219,12 @@
|
|||
101,
|
||||
46
|
||||
],
|
||||
"farming_carrot.png": [
|
||||
"mcl_farming_carrot.png": [
|
||||
147,
|
||||
106,
|
||||
63
|
||||
],
|
||||
"farming_potato_poison.png": [
|
||||
"mcl_farming_potato_poison.png": [
|
||||
121,
|
||||
93,
|
||||
55
|
||||
|
@ -3234,7 +3234,7 @@
|
|||
0,
|
||||
0
|
||||
],
|
||||
"farming_cookie.png": [
|
||||
"mcl_farming_cookie.png": [
|
||||
144,
|
||||
100,
|
||||
61
|
||||
|
@ -3254,7 +3254,7 @@
|
|||
96,
|
||||
96
|
||||
],
|
||||
"farming_carrot_4.png": [
|
||||
"mcl_farming_carrot_4.png": [
|
||||
93,
|
||||
105,
|
||||
58
|
||||
|
@ -3264,7 +3264,7 @@
|
|||
142,
|
||||
66
|
||||
],
|
||||
"farming_tool_woodhoe.png": [
|
||||
"mcl_farming_tool_woodhoe.png": [
|
||||
120,
|
||||
101,
|
||||
86
|
||||
|
@ -3274,17 +3274,17 @@
|
|||
119,
|
||||
65
|
||||
],
|
||||
"farming_carrot_1.png": [
|
||||
"mcl_farming_carrot_1.png": [
|
||||
75,
|
||||
112,
|
||||
61
|
||||
],
|
||||
"farming_carrot_3.png": [
|
||||
"mcl_farming_carrot_3.png": [
|
||||
70,
|
||||
107,
|
||||
57
|
||||
],
|
||||
"farming_melon.png": [
|
||||
"mcl_farming_melon.png": [
|
||||
153,
|
||||
84,
|
||||
62
|
||||
|
@ -3294,12 +3294,12 @@
|
|||
120,
|
||||
87
|
||||
],
|
||||
"farming_wheat_harvested.png": [
|
||||
"mcl_farming_wheat_harvested.png": [
|
||||
178,
|
||||
134,
|
||||
80
|
||||
],
|
||||
"farming_pumpkin_side.png": [
|
||||
"mcl_farming_pumpkin_side.png": [
|
||||
186,
|
||||
100,
|
||||
42
|
||||
|
@ -3334,7 +3334,7 @@
|
|||
80,
|
||||
68
|
||||
],
|
||||
"farming_tool_diamondhoe.png": [
|
||||
"mcl_farming_tool_diamondhoe.png": [
|
||||
101,
|
||||
104,
|
||||
104
|
||||
|
@ -3379,22 +3379,22 @@
|
|||
116,
|
||||
81
|
||||
],
|
||||
"farming_pumpkin_face_light.png": [
|
||||
"mcl_farming_pumpkin_face_light.png": [
|
||||
189,
|
||||
100,
|
||||
45
|
||||
],
|
||||
"farming_potato_baked.png": [
|
||||
"mcl_farming_potato_baked.png": [
|
||||
118,
|
||||
84,
|
||||
45
|
||||
],
|
||||
"farming_melon_side.png": [
|
||||
"mcl_farming_melon_side.png": [
|
||||
68,
|
||||
95,
|
||||
37
|
||||
],
|
||||
"farming_potato.png": [
|
||||
"mcl_farming_potato.png": [
|
||||
107,
|
||||
74,
|
||||
39
|
||||
|
@ -3404,12 +3404,12 @@
|
|||
97,
|
||||
45
|
||||
],
|
||||
"farming_pumpkin_top.png": [
|
||||
"mcl_farming_pumpkin_top.png": [
|
||||
172,
|
||||
87,
|
||||
40
|
||||
],
|
||||
"farming_bread.png": [
|
||||
"mcl_farming_bread.png": [
|
||||
177,
|
||||
133,
|
||||
94
|
||||
|
@ -3419,7 +3419,7 @@
|
|||
70,
|
||||
63
|
||||
],
|
||||
"farming_melon_top.png": [
|
||||
"mcl_farming_melon_top.png": [
|
||||
58,
|
||||
80,
|
||||
33
|
||||
|
@ -3429,7 +3429,7 @@
|
|||
106,
|
||||
57
|
||||
],
|
||||
"farming_tool_stonehoe.png": [
|
||||
"mcl_farming_tool_stonehoe.png": [
|
||||
133,
|
||||
122,
|
||||
111
|
||||
|
@ -3439,22 +3439,22 @@
|
|||
104,
|
||||
88
|
||||
],
|
||||
"farming_tool_goldhoe.png": [
|
||||
"mcl_farming_tool_goldhoe.png": [
|
||||
162,
|
||||
131,
|
||||
70
|
||||
],
|
||||
"farming_carrot_gold.png": [
|
||||
"mcl_farming_carrot_gold.png": [
|
||||
140,
|
||||
122,
|
||||
48
|
||||
],
|
||||
"farming_carrot_2.png": [
|
||||
"mcl_farming_carrot_2.png": [
|
||||
72,
|
||||
108,
|
||||
58
|
||||
],
|
||||
"farming_pumpkin_face.png": [
|
||||
"mcl_farming_pumpkin_face.png": [
|
||||
161,
|
||||
79,
|
||||
37
|
||||
|
@ -3474,7 +3474,7 @@
|
|||
97,
|
||||
45
|
||||
],
|
||||
"farming_tool_steelhoe.png": [
|
||||
"mcl_farming_tool_steelhoe.png": [
|
||||
123,
|
||||
112,
|
||||
102
|
||||
|
@ -6169,7 +6169,7 @@
|
|||
229,
|
||||
51
|
||||
],
|
||||
"hardened_clay_stained_pink.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_pink.png": [
|
||||
164,
|
||||
79,
|
||||
76
|
||||
|
@ -6244,7 +6244,7 @@
|
|||
151,
|
||||
151
|
||||
],
|
||||
"hardened_clay_stained_white.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_white.png": [
|
||||
213,
|
||||
197,
|
||||
184
|
||||
|
@ -6269,17 +6269,17 @@
|
|||
150,
|
||||
159
|
||||
],
|
||||
"hardened_clay_stained_purple.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_purple.png": [
|
||||
81,
|
||||
71,
|
||||
123
|
||||
],
|
||||
"hardened_clay_stained_brown.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_brown.png": [
|
||||
96,
|
||||
69,
|
||||
61
|
||||
],
|
||||
"hardened_clay_stained_grey.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_grey.png": [
|
||||
110,
|
||||
92,
|
||||
85
|
||||
|
@ -6289,7 +6289,7 @@
|
|||
171,
|
||||
25
|
||||
],
|
||||
"hardened_clay_stained_blue.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_blue.png": [
|
||||
68,
|
||||
91,
|
||||
143
|
||||
|
@ -6299,17 +6299,17 @@
|
|||
225,
|
||||
225
|
||||
],
|
||||
"hardened_clay_stained_yellow.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_yellow.png": [
|
||||
177,
|
||||
128,
|
||||
51
|
||||
],
|
||||
"hardened_clay_stained_light_blue.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_light_blue.png": [
|
||||
91,
|
||||
128,
|
||||
171
|
||||
],
|
||||
"hardened_clay.png": [
|
||||
"mcl_colorblocks_hardened_clay.png": [
|
||||
143,
|
||||
104,
|
||||
87
|
||||
|
@ -6374,7 +6374,7 @@
|
|||
162,
|
||||
204
|
||||
],
|
||||
"hardened_clay_stained_orange.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_orange.png": [
|
||||
156,
|
||||
95,
|
||||
69
|
||||
|
@ -6389,17 +6389,17 @@
|
|||
148,
|
||||
176
|
||||
],
|
||||
"hardened_clay_stained_silver.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_silver.png": [
|
||||
149,
|
||||
129,
|
||||
117
|
||||
],
|
||||
"hardened_clay_stained_red.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_red.png": [
|
||||
159,
|
||||
81,
|
||||
66
|
||||
],
|
||||
"hardened_clay_stained_magenta.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_magenta.png": [
|
||||
150,
|
||||
80,
|
||||
85
|
||||
|
@ -6414,12 +6414,12 @@
|
|||
214,
|
||||
215
|
||||
],
|
||||
"hardened_clay_stained_green.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_green.png": [
|
||||
74,
|
||||
101,
|
||||
63
|
||||
],
|
||||
"hardened_clay_stained_lime.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_lime.png": [
|
||||
105,
|
||||
134,
|
||||
73
|
||||
|
@ -6444,7 +6444,7 @@
|
|||
32,
|
||||
159
|
||||
],
|
||||
"hardened_clay_stained_cyan.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_cyan.png": [
|
||||
71,
|
||||
107,
|
||||
123
|
||||
|
@ -6484,7 +6484,7 @@
|
|||
98,
|
||||
103
|
||||
],
|
||||
"hardened_clay_stained_black.png": [
|
||||
"mcl_colorblocks_hardened_clay_stained_black.png": [
|
||||
69,
|
||||
52,
|
||||
46
|
||||
|
@ -7479,7 +7479,7 @@
|
|||
92,
|
||||
83
|
||||
],
|
||||
"farming_mushroom_red.png": [
|
||||
"mcl_mushrooms_mushroom_red.png": [
|
||||
169,
|
||||
59,
|
||||
58
|
||||
|
@ -7504,12 +7504,12 @@
|
|||
39,
|
||||
25
|
||||
],
|
||||
"farming_mushroom_brown.png": [
|
||||
"mcl_mushrooms_mushroom_brown.png": [
|
||||
121,
|
||||
81,
|
||||
59
|
||||
],
|
||||
"farming_mushroom_stew.png": [
|
||||
"mcl_mushrooms_mushroom_stew.png": [
|
||||
134,
|
||||
97,
|
||||
67
|
||||
|
@ -9459,57 +9459,57 @@
|
|||
84,
|
||||
65
|
||||
],
|
||||
"wool_dark_grey.png": [
|
||||
"mcl_wool_dark_grey.png": [
|
||||
96,
|
||||
87,
|
||||
87
|
||||
],
|
||||
"wool_grey.png": [
|
||||
"mcl_wool_grey.png": [
|
||||
143,
|
||||
134,
|
||||
134
|
||||
],
|
||||
"wool_magenta.png": [
|
||||
"mcl_wool_magenta.png": [
|
||||
140,
|
||||
85,
|
||||
125
|
||||
],
|
||||
"wool_black.png": [
|
||||
"mcl_wool_black.png": [
|
||||
45,
|
||||
42,
|
||||
42
|
||||
],
|
||||
"wool_orange.png": [
|
||||
"mcl_wool_orange.png": [
|
||||
188,
|
||||
106,
|
||||
45
|
||||
],
|
||||
"wool_blue.png": [
|
||||
"mcl_wool_blue.png": [
|
||||
43,
|
||||
73,
|
||||
125
|
||||
],
|
||||
"wool_yellow.png": [
|
||||
"mcl_wool_yellow.png": [
|
||||
201,
|
||||
163,
|
||||
69
|
||||
],
|
||||
"wool_pink.png": [
|
||||
"mcl_wool_pink.png": [
|
||||
171,
|
||||
91,
|
||||
108
|
||||
],
|
||||
"wool_dark_green.png": [
|
||||
"mcl_wool_dark_green.png": [
|
||||
53,
|
||||
91,
|
||||
51
|
||||
],
|
||||
"wool_brown.png": [
|
||||
"mcl_wool_brown.png": [
|
||||
86,
|
||||
57,
|
||||
43
|
||||
],
|
||||
"wool_red.png": [
|
||||
"mcl_wool_red.png": [
|
||||
132,
|
||||
42,
|
||||
45
|
||||
|
@ -9519,7 +9519,7 @@
|
|||
130,
|
||||
180
|
||||
],
|
||||
"wool_cyan.png": [
|
||||
"mcl_wool_cyan.png": [
|
||||
30,
|
||||
94,
|
||||
113
|
||||
|
@ -9529,12 +9529,12 @@
|
|||
151,
|
||||
76
|
||||
],
|
||||
"wool_white.png": [
|
||||
"mcl_wool_white.png": [
|
||||
212,
|
||||
199,
|
||||
182
|
||||
],
|
||||
"wool_violet.png": [
|
||||
"mcl_wool_violet.png": [
|
||||
77,
|
||||
57,
|
||||
102
|
||||
|
@ -9654,22 +9654,22 @@
|
|||
82,
|
||||
97
|
||||
],
|
||||
"crafting_workbench_front.png": [
|
||||
"mcl_crafting_table_workbench_front.png": [
|
||||
120,
|
||||
93,
|
||||
72
|
||||
],
|
||||
"gui_crafting_arrow.png": [
|
||||
"mcl_crafting_table_crafting_arrow.png": [
|
||||
139,
|
||||
139,
|
||||
139
|
||||
],
|
||||
"crafting_workbench_side.png": [
|
||||
"mcl_crafting_table_workbench_side.png": [
|
||||
120,
|
||||
93,
|
||||
72
|
||||
],
|
||||
"crafting_workbench_top.png": [
|
||||
"mcl_crafting_table_workbench_top.png": [
|
||||
152,
|
||||
121,
|
||||
93
|
||||
|
@ -9899,222 +9899,222 @@
|
|||
209,
|
||||
231
|
||||
],
|
||||
"doc_basics_gameplay_mtg_2.png": [
|
||||
"mcl_doc_basics_gameplay_mtg_2.png": [
|
||||
151,
|
||||
168,
|
||||
207
|
||||
],
|
||||
"doc_basics_liquids_renewable_1.png": [
|
||||
"mcl_doc_basics_liquids_renewable_1.png": [
|
||||
139,
|
||||
146,
|
||||
159
|
||||
],
|
||||
"doc_basics_players_sam.png": [
|
||||
"mcl_doc_basics_players_sam.png": [
|
||||
95,
|
||||
133,
|
||||
106
|
||||
],
|
||||
"doc_basics_players_flat.png": [
|
||||
"mcl_doc_basics_players_flat.png": [
|
||||
127,
|
||||
155,
|
||||
130
|
||||
],
|
||||
"doc_basics_craft_shapeless_2.png": [
|
||||
"mcl_doc_basics_craft_shapeless_2.png": [
|
||||
52,
|
||||
52,
|
||||
48
|
||||
],
|
||||
"doc_basics_build.png": [
|
||||
"mcl_doc_basics_build.png": [
|
||||
84,
|
||||
84,
|
||||
55
|
||||
],
|
||||
"doc_basics_pointing.png": [
|
||||
"mcl_doc_basics_pointing.png": [
|
||||
66,
|
||||
104,
|
||||
32
|
||||
],
|
||||
"doc_basics_nodes.png": [
|
||||
"mcl_doc_basics_nodes.png": [
|
||||
108,
|
||||
104,
|
||||
94
|
||||
],
|
||||
"doc_basics_craft_groups_2.png": [
|
||||
"mcl_doc_basics_craft_groups_2.png": [
|
||||
65,
|
||||
58,
|
||||
52
|
||||
],
|
||||
"doc_basics_craft_groups_1.png": [
|
||||
"mcl_doc_basics_craft_groups_1.png": [
|
||||
57,
|
||||
57,
|
||||
58
|
||||
],
|
||||
"doc_basics_inventory.png": [
|
||||
"mcl_doc_basics_inventory.png": [
|
||||
47,
|
||||
47,
|
||||
45
|
||||
],
|
||||
"doc_basics_minimap_radar.png": [
|
||||
"mcl_doc_basics_minimap_radar.png": [
|
||||
73,
|
||||
164,
|
||||
128
|
||||
],
|
||||
"doc_basics_sneak.png": [
|
||||
"mcl_doc_basics_sneak.png": [
|
||||
70,
|
||||
69,
|
||||
69
|
||||
],
|
||||
"doc_basics_camera_behind.png": [
|
||||
"mcl_doc_basics_camera_behind.png": [
|
||||
108,
|
||||
144,
|
||||
135
|
||||
],
|
||||
"doc_basics_craft_repair.png": [
|
||||
"mcl_doc_basics_craft_repair.png": [
|
||||
47,
|
||||
46,
|
||||
45
|
||||
],
|
||||
"doc_basics_hotbar_relations.png": [
|
||||
"mcl_doc_basics_hotbar_relations.png": [
|
||||
85,
|
||||
84,
|
||||
69
|
||||
],
|
||||
"doc_basics_gameplay_lott.png": [
|
||||
"mcl_doc_basics_gameplay_lott.png": [
|
||||
119,
|
||||
122,
|
||||
112
|
||||
],
|
||||
"doc_basics_tools_mining.png": [
|
||||
"mcl_doc_basics_tools_mining.png": [
|
||||
64,
|
||||
62,
|
||||
59
|
||||
],
|
||||
"doc_basics_players_lott.png": [
|
||||
"mcl_doc_basics_players_lott.png": [
|
||||
180,
|
||||
193,
|
||||
224
|
||||
],
|
||||
"doc_basics_gameplay_outback.png": [
|
||||
"mcl_doc_basics_gameplay_outback.png": [
|
||||
146,
|
||||
114,
|
||||
109
|
||||
],
|
||||
"doc_basics_gameplay_pixture.png": [
|
||||
"mcl_doc_basics_gameplay_pixture.png": [
|
||||
94,
|
||||
120,
|
||||
57
|
||||
],
|
||||
"doc_basics_craft_grid.png": [
|
||||
"mcl_doc_basics_craft_grid.png": [
|
||||
46,
|
||||
46,
|
||||
46
|
||||
],
|
||||
"doc_basics_craft_groups_3.png": [
|
||||
"mcl_doc_basics_craft_groups_3.png": [
|
||||
61,
|
||||
58,
|
||||
55
|
||||
],
|
||||
"doc_basics_camera_front.png": [
|
||||
"mcl_doc_basics_camera_front.png": [
|
||||
99,
|
||||
133,
|
||||
110
|
||||
],
|
||||
"doc_basics_minimap_map.png": [
|
||||
"mcl_doc_basics_minimap_map.png": [
|
||||
149,
|
||||
169,
|
||||
183
|
||||
],
|
||||
"doc_basics_gameplay_mtg_1.png": [
|
||||
"mcl_doc_basics_gameplay_mtg_1.png": [
|
||||
136,
|
||||
117,
|
||||
86
|
||||
],
|
||||
"doc_basics_gameplay_xtraores_xtension.png": [
|
||||
"mcl_doc_basics_gameplay_xtraores_xtension.png": [
|
||||
95,
|
||||
15,
|
||||
86
|
||||
],
|
||||
"doc_basics_light_torch.png": [
|
||||
"mcl_doc_basics_light_torch.png": [
|
||||
25,
|
||||
43,
|
||||
14
|
||||
],
|
||||
"doc_basics_minimap_round.png": [
|
||||
"mcl_doc_basics_minimap_round.png": [
|
||||
160,
|
||||
175,
|
||||
189
|
||||
],
|
||||
"doc_basics_light_test.png": [
|
||||
"mcl_doc_basics_light_test.png": [
|
||||
133,
|
||||
113,
|
||||
69
|
||||
],
|
||||
"doc_basics_liquids_nonrenewable.png": [
|
||||
"mcl_doc_basics_liquids_nonrenewable.png": [
|
||||
64,
|
||||
87,
|
||||
87
|
||||
],
|
||||
"doc_basics_gameplay_hades.png": [
|
||||
"mcl_doc_basics_gameplay_hades.png": [
|
||||
81,
|
||||
70,
|
||||
62
|
||||
],
|
||||
"doc_basics_gameplay_moontest.png": [
|
||||
"mcl_doc_basics_gameplay_moontest.png": [
|
||||
75,
|
||||
74,
|
||||
79
|
||||
],
|
||||
"doc_basics_liquids_range.png": [
|
||||
"mcl_doc_basics_liquids_range.png": [
|
||||
146,
|
||||
166,
|
||||
179
|
||||
],
|
||||
"doc_basics_inventory_detail.png": [
|
||||
"mcl_doc_basics_inventory_detail.png": [
|
||||
43,
|
||||
41,
|
||||
39
|
||||
],
|
||||
"doc_basics_camera_ego.png": [
|
||||
"mcl_doc_basics_camera_ego.png": [
|
||||
111,
|
||||
147,
|
||||
139
|
||||
],
|
||||
"doc_basics_tools.png": [
|
||||
"mcl_doc_basics_tools.png": [
|
||||
46,
|
||||
45,
|
||||
42
|
||||
],
|
||||
"doc_basics_liquids_renewable_2.png": [
|
||||
"mcl_doc_basics_liquids_renewable_2.png": [
|
||||
136,
|
||||
148,
|
||||
166
|
||||
],
|
||||
"doc_basics_items_dropped.png": [
|
||||
"mcl_doc_basics_items_dropped.png": [
|
||||
195,
|
||||
185,
|
||||
147
|
||||
],
|
||||
"doc_basics_liquids_types.png": [
|
||||
"mcl_doc_basics_liquids_types.png": [
|
||||
146,
|
||||
164,
|
||||
171
|
||||
],
|
||||
"doc_basics_gameplay_carbone_ng.png": [
|
||||
"mcl_doc_basics_gameplay_carbone_ng.png": [
|
||||
121,
|
||||
118,
|
||||
89
|
||||
],
|
||||
"doc_basics_craft_shaped.png": [
|
||||
"mcl_doc_basics_craft_shaped.png": [
|
||||
55,
|
||||
52,
|
||||
50
|
||||
],
|
||||
"doc_basics_hotbar.png": [
|
||||
"mcl_doc_basics_hotbar.png": [
|
||||
141,
|
||||
175,
|
||||
226
|
||||
],
|
||||
"doc_basics_craft_shapeless_1.png": [
|
||||
"mcl_doc_basics_craft_shapeless_1.png": [
|
||||
52,
|
||||
52,
|
||||
48
|
||||
|
@ -10149,17 +10149,17 @@
|
|||
147,
|
||||
190
|
||||
],
|
||||
"craftguide_furnace.png": [
|
||||
"mcl_craftguide_furnace.png": [
|
||||
119,
|
||||
95,
|
||||
85
|
||||
],
|
||||
"craftguide_clear_icon.png": [
|
||||
"mcl_craftguide_clear_icon.png": [
|
||||
254,
|
||||
254,
|
||||
254
|
||||
],
|
||||
"craftguide_book.png": [
|
||||
"mcl_craftguide_book.png": [
|
||||
84,
|
||||
117,
|
||||
39
|
||||
|
@ -10169,37 +10169,37 @@
|
|||
121,
|
||||
75
|
||||
],
|
||||
"craftguide_prev_icon.png": [
|
||||
"mcl_craftguide_prev_icon.png": [
|
||||
255,
|
||||
255,
|
||||
255
|
||||
],
|
||||
"craftguide_zoomout_icon.png": [
|
||||
"mcl_craftguide_zoomout_icon.png": [
|
||||
255,
|
||||
255,
|
||||
255
|
||||
],
|
||||
"craftguide_search_icon.png": [
|
||||
"mcl_craftguide_search_icon.png": [
|
||||
254,
|
||||
254,
|
||||
254
|
||||
],
|
||||
"craftguide_arrow.png": [
|
||||
"mcl_craftguide_arrow.png": [
|
||||
139,
|
||||
139,
|
||||
139
|
||||
],
|
||||
"craftguide_zoomin_icon.png": [
|
||||
"mcl_craftguide_zoomin_icon.png": [
|
||||
255,
|
||||
255,
|
||||
255
|
||||
],
|
||||
"craftguide_shapeless.png": [
|
||||
"mcl_craftguide_shapeless.png": [
|
||||
130,
|
||||
130,
|
||||
130
|
||||
],
|
||||
"craftguide_next_icon.png": [
|
||||
"mcl_craftguide_next_icon.png": [
|
||||
255,
|
||||
255,
|
||||
255
|
||||
|
|
|
@ -32,9 +32,9 @@ minetest.register_node("mcl_mushrooms:mushroom_brown", {
|
|||
_doc_items_usagehelp = usagehelp,
|
||||
_tt_help = tt_help,
|
||||
drawtype = "plantlike",
|
||||
tiles = { "farming_mushroom_brown.png" },
|
||||
inventory_image = "farming_mushroom_brown.png",
|
||||
wield_image = "farming_mushroom_brown.png",
|
||||
tiles = { "mcl_mushrooms_mushroom_brown.png" },
|
||||
inventory_image = "mcl_mushrooms_mushroom_brown.png",
|
||||
wield_image = "mcl_mushrooms_mushroom_brown.png",
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
@ -60,9 +60,9 @@ minetest.register_node("mcl_mushrooms:mushroom_red", {
|
|||
_doc_items_usagehelp = usagehelp,
|
||||
_tt_help = tt_help,
|
||||
drawtype = "plantlike",
|
||||
tiles = { "farming_mushroom_red.png" },
|
||||
inventory_image = "farming_mushroom_red.png",
|
||||
wield_image = "farming_mushroom_red.png",
|
||||
tiles = { "mcl_mushrooms_mushroom_red.png" },
|
||||
inventory_image = "mcl_mushrooms_mushroom_red.png",
|
||||
wield_image = "mcl_mushrooms_mushroom_red.png",
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
@ -84,7 +84,7 @@ minetest.register_node("mcl_mushrooms:mushroom_red", {
|
|||
minetest.register_craftitem("mcl_mushrooms:mushroom_stew", {
|
||||
description = S("Mushroom Stew"),
|
||||
_doc_items_longdesc = S("Mushroom stew is a healthy soup which can be consumed to restore some hunger points."),
|
||||
inventory_image = "farming_mushroom_stew.png",
|
||||
inventory_image = "mcl_mushrooms_mushroom_stew.png",
|
||||
on_place = minetest.item_eat(6, "mcl_core:bowl"),
|
||||
on_secondary_use = minetest.item_eat(6, "mcl_core:bowl"),
|
||||
groups = { food = 3, eatable = 6 },
|
||||
|
|
|
@ -36,7 +36,7 @@ local function active_formspec(fuel_percent, item_percent)
|
|||
|
||||
-- Craft guide button temporarily removed due to Minetest bug.
|
||||
-- TODO: Add it back when the Minetest bug is fixed.
|
||||
--"image_button[8,0;1,1;craftguide_book.png;craftguide;]"..
|
||||
--"image_button[8,0;1,1;mcl_craftguide_book.png;craftguide;]"..
|
||||
--"tooltip[craftguide;"..minetest.formspec_escape(S("Recipe book")).."]"..
|
||||
|
||||
"listring[context;dst]",
|
||||
|
@ -74,7 +74,7 @@ local inactive_formspec = table.concat({
|
|||
|
||||
-- Craft guide button temporarily removed due to Minetest bug.
|
||||
-- TODO: Add it back when the Minetest bug is fixed.
|
||||
--"image_button[8,0;1,1;craftguide_book.png;craftguide;]"..
|
||||
--"image_button[8,0;1,1;mcl_craftguide_book.png;craftguide;]"..
|
||||
--"tooltip[craftguide;"..minetest.formspec_escape(S("Recipe book")).."]"..
|
||||
|
||||
"listring[context;dst]",
|
||||
|
|
|
@ -13,20 +13,20 @@ local wool = {}
|
|||
-- colors available. When crafting, the last recipes will be checked first.
|
||||
wool.dyes = {
|
||||
-- name, texture, wool desc., carpet desc., dye, color_group
|
||||
{"white", "wool_white", S("White Wool"), S("White Carpet"), nil, "unicolor_white"},
|
||||
{"grey", "wool_dark_grey", S("Grey Wool"), S("Grey Carpet"), "dark_grey", "unicolor_darkgrey"},
|
||||
{"silver", "wool_grey", S("Light Grey Wool"), S("Light Grey Carpet"), "grey", "unicolor_grey"},
|
||||
{"black", "wool_black", S("Black Wool"), S("Black Carpet"), "black", "unicolor_black"},
|
||||
{"red", "wool_red", S("Red Wool"), S("Red Carpet"), "red", "unicolor_red"},
|
||||
{"yellow", "wool_yellow", S("Yellow Wool"), S("Yellow Carpet"), "yellow", "unicolor_yellow"},
|
||||
{"green", "wool_dark_green", S("Green Wool"), S("Green Carpet"), "dark_green", "unicolor_dark_green"},
|
||||
{"cyan", "wool_cyan", S("Cyan Wool"), S("Cyan Carpet"), "cyan", "unicolor_cyan"},
|
||||
{"blue", "wool_blue", S("Blue Wool"), S("Blue Carpet"), "blue", "unicolor_blue"},
|
||||
{"magenta", "wool_magenta", S("Magenta Wool"), S("Magenta Carpet"), "magenta", "unicolor_red_violet"},
|
||||
{"orange", "wool_orange", S("Orange Wool"), S("Orange Carpet"), "orange", "unicolor_orange"},
|
||||
{"purple", "wool_violet", S("Purple Wool"), S("Purple Carpet"), "violet", "unicolor_violet"},
|
||||
{"brown", "wool_brown", S("Brown Wool"), S("Brown Carpet"), "brown", "unicolor_dark_orange"},
|
||||
{"pink", "wool_pink", S("Pink Wool"), S("Pink Carpet"), "pink", "unicolor_light_red"},
|
||||
{"white", "mcl_wool_white", S("White Wool"), S("White Carpet"), nil, "unicolor_white"},
|
||||
{"grey", "mcl_wool_dark_grey", S("Grey Wool"), S("Grey Carpet"), "dark_grey", "unicolor_darkgrey"},
|
||||
{"silver", "mcl_wool_grey", S("Light Grey Wool"), S("Light Grey Carpet"), "grey", "unicolor_grey"},
|
||||
{"black", "mcl_wool_black", S("Black Wool"), S("Black Carpet"), "black", "unicolor_black"},
|
||||
{"red", "mcl_wool_red", S("Red Wool"), S("Red Carpet"), "red", "unicolor_red"},
|
||||
{"yellow", "mcl_wool_yellow", S("Yellow Wool"), S("Yellow Carpet"), "yellow", "unicolor_yellow"},
|
||||
{"green", "mcl_wool_dark_green", S("Green Wool"), S("Green Carpet"), "dark_green", "unicolor_dark_green"},
|
||||
{"cyan", "mcl_wool_cyan", S("Cyan Wool"), S("Cyan Carpet"), "cyan", "unicolor_cyan"},
|
||||
{"blue", "mcl_wool_blue", S("Blue Wool"), S("Blue Carpet"), "blue", "unicolor_blue"},
|
||||
{"magenta", "mcl_wool_magenta", S("Magenta Wool"), S("Magenta Carpet"), "magenta", "unicolor_red_violet"},
|
||||
{"orange", "mcl_wool_orange", S("Orange Wool"), S("Orange Carpet"), "orange", "unicolor_orange"},
|
||||
{"purple", "mcl_wool_violet", S("Purple Wool"), S("Purple Carpet"), "violet", "unicolor_violet"},
|
||||
{"brown", "mcl_wool_brown", S("Brown Wool"), S("Brown Carpet"), "brown", "unicolor_dark_orange"},
|
||||
{"pink", "mcl_wool_pink", S("Pink Wool"), S("Pink Carpet"), "pink", "unicolor_light_red"},
|
||||
{"lime", "mcl_wool_lime", S("Lime Wool"), S("Lime Carpet"), "green", "unicolor_green"},
|
||||
{"light_blue", "mcl_wool_light_blue", S("Light Blue Wool"), S("Light Blue Carpet"), "lightblue", "unicolor_light_blue"},
|
||||
}
|
||||
|
|
Before Width: | Height: | Size: 231 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 135 B After Width: | Height: | Size: 135 B |
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 192 B |
Before Width: | Height: | Size: 594 B After Width: | Height: | Size: 594 B |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
Before Width: | Height: | Size: 714 B After Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 714 B After Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 170 B After Width: | Height: | Size: 170 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 86 B After Width: | Height: | Size: 86 B |
Before Width: | Height: | Size: 181 B After Width: | Height: | Size: 181 B |
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 233 B |
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 294 B |
Before Width: | Height: | Size: 893 B After Width: | Height: | Size: 893 B |
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 103 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 110 KiB |
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |