Clean up and rename textures in mcl_core

master
Wuzzy 2017-05-26 01:06:54 +02:00
parent 37bcb9449d
commit 316ee94c2d
86 changed files with 91 additions and 91 deletions

View File

@ -36,7 +36,7 @@ minetest.register_craftitem("mcl_core:charcoal_lump", {
_doc_items_longdesc = "Charcoal is an alternative furnace fuel created by cooking wood in a furnace. It has the same burning time as coal and also shares many of its crafting recipes, but it can not be used to create coal blocks.",
_doc_items_hidden = false,
groups = { coal=1 },
inventory_image = "default_charcoal_lump.png",
inventory_image = "mcl_core_charcoal.png",
stack_max = 64,
groups = { craftitem=1, coal=1 },
})
@ -44,7 +44,7 @@ minetest.register_craftitem("mcl_core:charcoal_lump", {
minetest.register_craftitem("mcl_core:iron_nugget", {
description = "Iron Nugget",
_doc_items_longdesc = "Iron nuggets are very small pieces of molten iron; the main purpose is to create iron ingots.",
inventory_image = "default_iron_nugget.png",
inventory_image = "mcl_core_iron_nugget.png",
stack_max = 64,
groups = { craftitem=1 },
})
@ -52,7 +52,7 @@ minetest.register_craftitem("mcl_core:iron_nugget", {
minetest.register_craftitem("mcl_core:gold_nugget", {
description = "Gold Nugget",
_doc_items_longdesc = "Gold nuggets are very small pieces of molten gold; the main purpose is to create gold ingots.",
inventory_image = "default_gold_nugget.png",
inventory_image = "mcl_core_gold_nugget.png",
stack_max = 64,
groups = { craftitem=1 },
})
@ -93,7 +93,7 @@ minetest.register_craftitem("mcl_core:gold_ingot", {
minetest.register_craftitem("mcl_core:emerald", {
description = "Emerald",
_doc_items_longdesc = "Emeralds are not very useful on their own, but many villagers have a love for emeralds and often use it as a currency in trading.",
inventory_image = "default_emerald.png",
inventory_image = "mcl_core_emerald.png",
stack_max = 64,
groups = { craftitem=1 },
})
@ -117,7 +117,7 @@ minetest.register_craftitem("mcl_core:flint", {
minetest.register_craftitem("mcl_core:sugar", {
description = "Sugar",
_doc_items_longdesc = "Sugar comes from sugar canes and is used to make sweet foods.",
inventory_image = "default_sugar.png",
inventory_image = "mcl_core_sugar.png",
stack_max = 64,
groups = { craftitem = 1 },
})
@ -125,7 +125,7 @@ minetest.register_craftitem("mcl_core:sugar", {
minetest.register_craftitem("mcl_core:bowl",{
description = "Bowl",
_doc_items_longdesc = "Bowls are mainly used to hold tasty soups.",
inventory_image = "default_bowl.png",
inventory_image = "mcl_core_bowl.png",
stack_max = 64,
groups = { craftitem = 1 },
})
@ -146,8 +146,8 @@ minetest.register_craftitem("mcl_core:apple", {
minetest.register_craftitem("mcl_core:apple_gold", {
description = core.colorize("#55FFFF", "Golden Apple"),
_doc_items_longdesc = "Golden apples are precious food items which can be eaten.",
wield_image = "default_apple_gold.png",
inventory_image = "default_apple_gold.png",
wield_image = "mcl_core_apple_golden.png",
inventory_image = "mcl_core_apple_golden.png",
stack_max = 64,
-- TODO: Reduce to 4 when it's ready
on_place = minetest.item_eat(8),

View File

@ -14,8 +14,8 @@ minetest.register_node("mcl_core:barrier", {
_doc_items_usagehelp = "When you hold a barrier in hand, you reveal all placed barriers in a short distance around you.",
drawtype = "airlike",
paramtype = "light",
inventory_image = "default_barrier.png",
wield_image = "default_barrier.png",
inventory_image = "mcl_core_barrier.png",
wield_image = "mcl_core_barrier.png",
tiles = { "blank.png" },
stack_max = 64,
sunlight_propagates = true,
@ -33,7 +33,7 @@ minetest.register_node("mcl_core:barrier", {
pos = pos,
expirationtime = 1,
size = 8,
texture = "default_barrier.png",
texture = "mcl_core_barrier.png",
playername = placer:get_player_name()
})
end,
@ -82,7 +82,7 @@ minetest.register_node("mcl_core:stone_with_coal", {
description = "Coal Ore",
_doc_items_longdesc = "Some coal contained in stone, it is very common and can be found inside stone in medium to large clusters at nearly every height.",
_doc_items_hidden = false,
tiles = {"default_stone.png^default_mineral_coal.png"},
tiles = {"mcl_core_coal_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, building_block=1, material_stone=1},
@ -95,7 +95,7 @@ minetest.register_node("mcl_core:stone_with_coal", {
minetest.register_node("mcl_core:stone_with_iron", {
description = "Iron Ore",
_doc_items_longdesc = "Some iron contained in stone, it is prety common and can be found below sea level.",
tiles = {"default_stone.png^default_mineral_iron.png"},
tiles = {"mcl_core_iron_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=3, building_block=1, material_stone=1},
@ -109,7 +109,7 @@ minetest.register_node("mcl_core:stone_with_iron", {
minetest.register_node("mcl_core:stone_with_gold", {
description = "Gold Ore",
_doc_items_longdesc = "This stone contains pure gold, a rare metal.",
tiles = {"default_stone.png^default_mineral_gold.png"},
tiles = {"mcl_core_gold_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
@ -128,7 +128,7 @@ end
minetest.register_node("mcl_core:stone_with_redstone", {
description = "Redstone Ore",
_doc_items_longdesc = "Redstone ore is commonly found near the bottom of the world. It glows when it is punched or walked upon.",
tiles = {"default_stone.png^default_mineral_redstone.png"},
tiles = {"mcl_core_redstone_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
@ -159,7 +159,7 @@ end
minetest.register_node("mcl_core:stone_with_redstone_lit", {
description = "Lit Redstone Ore",
_doc_items_create_entry = false,
tiles = {"default_stone.png^default_mineral_redstone.png"},
tiles = {"mcl_core_redstone_ore.png"},
paramtype = "light",
light_source = 9,
is_ground_content = true,
@ -192,7 +192,7 @@ minetest.register_node("mcl_core:stone_with_redstone_lit", {
minetest.register_node("mcl_core:stone_with_lapis", {
description = "Lapis Lazuli Ore",
_doc_items_longdesc = "Lapis lazuli ore is the ore of lapis lazuli. It can be rarely found in clusters near the bottom of the world.",
tiles = {"default_stone.png^default_mineral_lapis.png"},
tiles = {"mcl_core_lapis_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=3, building_block=1, material_stone=1},
@ -214,7 +214,7 @@ minetest.register_node("mcl_core:stone_with_lapis", {
minetest.register_node("mcl_core:stone_with_emerald", {
description = "Emerald Ore",
_doc_items_longdesc = "Emerald ore is the ore of emeralds. It is very rare and can be found alone, not in clusters.",
tiles = {"default_stone.png^default_mineral_emerald.png"},
tiles = {"mcl_core_emerald_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
@ -227,7 +227,7 @@ minetest.register_node("mcl_core:stone_with_emerald", {
minetest.register_node("mcl_core:stone_with_diamond", {
description = "Diamond Ore",
_doc_items_longdesc = "Diamond ore is rare and can be found in clusters near the bottom of the world.",
tiles = {"default_stone.png^default_mineral_diamond.png"},
tiles = {"mcl_core_diamond_ore.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
@ -252,7 +252,7 @@ minetest.register_node("mcl_core:stonebrick", {
minetest.register_node("mcl_core:stonebrickcarved", {
description = "Chiseled Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_stonebrick_carved.png"},
tiles = {"mcl_core_stonebrick_carved.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
@ -265,7 +265,7 @@ minetest.register_node("mcl_core:stonebrickcarved", {
minetest.register_node("mcl_core:stonebrickcracked", {
description = "Cracked Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_stonebrick_cracked.png"},
tiles = {"mcl_core_stonebrick_cracked.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
@ -278,7 +278,7 @@ minetest.register_node("mcl_core:stonebrickcracked", {
minetest.register_node("mcl_core:stonebrickmossy", {
description = "Mossy Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_stonebrick_mossy.png"},
tiles = {"mcl_core_stonebrick_mossy.png"},
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -290,7 +290,7 @@ minetest.register_node("mcl_core:stonebrickmossy", {
minetest.register_node("mcl_core:granite", {
description = "Granite",
_doc_items_longdesc = "Granite is an igneous rock.",
tiles = {"default_granite.png"},
tiles = {"mcl_core_granite.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
@ -302,7 +302,7 @@ minetest.register_node("mcl_core:granite", {
minetest.register_node("mcl_core:granite_smooth", {
description = "Polished Granite",
_doc_items_longdesc = "Polished granite is a decorational building block made from granite.",
tiles = {"default_granite_smooth.png"},
tiles = {"mcl_core_granite_smooth.png"},
stack_max = 64,
is_ground_content = false,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
@ -314,7 +314,7 @@ minetest.register_node("mcl_core:granite_smooth", {
minetest.register_node("mcl_core:andesite", {
description = "Andesite",
_doc_items_longdesc = "Andesite is an igneous rock.",
tiles = {"default_andesite.png"},
tiles = {"mcl_core_andesite.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
@ -326,7 +326,7 @@ minetest.register_node("mcl_core:andesite", {
minetest.register_node("mcl_core:andesite_smooth", {
description = "Polished Andesite",
_doc_items_longdesc = "Polished andesite is a decorational building block made from andesite.",
tiles = {"default_andesite_smooth.png"},
tiles = {"mcl_core_andesite_smooth.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
@ -338,7 +338,7 @@ minetest.register_node("mcl_core:andesite_smooth", {
minetest.register_node("mcl_core:diorite", {
description = "Diorite",
_doc_items_longdesc = "Diorite is an igneous rock.",
tiles = {"default_diorite.png"},
tiles = {"mcl_core_diorite.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
@ -350,7 +350,7 @@ minetest.register_node("mcl_core:diorite", {
minetest.register_node("mcl_core:diorite_smooth", {
description = "Polished Diorite",
_doc_items_longdesc = "Polished diorite is a decorational building block made from diorite.",
tiles = {"default_diorite_smooth.png"},
tiles = {"mcl_core_diorite_smooth.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
@ -419,7 +419,7 @@ minetest.register_node("mcl_core:grass_path", {
minetest.register_node("mcl_core:mycelium", {
description = "Mycelium",
_doc_items_longdesc = "Mycelium is a type of dirt and the ideal soil for mushrooms. Unlike other dirt-type blocks, it can not be turned into farmland with a hoe. In light, mycelium slowly spreads over nearby dirt. Under an opaque block or a liquid, it eventually turns back into dirt.",
tiles = {"default_mycelium_top.png", "default_dirt.png", "default_mycelium_side.png"},
tiles = {"mcl_core_mycelium_top.png", "default_dirt.png", "mcl_core_mycelium_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, spreading_dirt_type=1, building_block=1},
@ -452,7 +452,7 @@ minetest.register_node("mcl_core:mycelium_snow", {
minetest.register_node("mcl_core:podzol", {
description = "Podzol",
_doc_items_longdesc = "Podzol is a type of dirt found in taiga forests. Only a few plants are able to survive on it.",
tiles = {"default_dirt_podzol_top.png", "default_dirt.png", "default_dirt_podzol_side.png"},
tiles = {"mcl_core_dirt_podzol_top.png", "default_dirt.png", "mcl_core_dirt_podzol_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=3, soil=1, soil_sapling=2, soil_sugarcane=1, building_block=1},
@ -495,7 +495,7 @@ minetest.register_node("mcl_core:dirt", {
minetest.register_node("mcl_core:coarse_dirt", {
description = "Coarse Dirt",
_doc_items_longdesc = "Coarse dirt acts as a soil for some plants and is similar to dirt, but it will never grow a cover.",
tiles = {"default_coarse_dirt.png"},
tiles = {"mcl_core_coarse_dirt.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, soil=1, soil_sugarcane=1, cultivatable=1, building_block=1},
@ -543,7 +543,7 @@ minetest.register_node("mcl_core:sandstone", {
description = "Sandstone",
_doc_items_hidden = false,
_doc_items_longdesc = "Sandstone is compressed sand and is a rather soft kind of stone.",
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"},
tiles = {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_normal.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=2, sandstone=1, building_block=1, material_stone=1},
@ -555,7 +555,7 @@ minetest.register_node("mcl_core:sandstone", {
minetest.register_node("mcl_core:sandstonesmooth", {
description = "Smooth Sandstone",
_doc_items_longdesc = "Smooth sandstone is a decorational building block.",
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_smooth.png"},
tiles = {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_smooth.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
@ -567,7 +567,7 @@ minetest.register_node("mcl_core:sandstonesmooth", {
minetest.register_node("mcl_core:sandstonecarved", {
description = "Chiseled Sandstone",
_doc_items_longdesc = "Chiseled sandstone is a decorational building block.",
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_carved.png"},
tiles = {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_carved.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
@ -581,7 +581,7 @@ minetest.register_node("mcl_core:sandstonecarved", {
minetest.register_node("mcl_core:redsand", {
description = "Red Sand",
_doc_items_longdesc = "Red sand is found in large quantities in mesa biomes.",
tiles = {"default_red_sand.png"},
tiles = {"mcl_core_red_sand.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, building_block=1, material_sand=1},
@ -593,7 +593,7 @@ minetest.register_node("mcl_core:redsand", {
minetest.register_node("mcl_core:redsandstone", {
description = "Red Sandstone",
_doc_items_longdesc = "Red sandstone is compressed red sand and is a rather soft kind of stone.",
tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"},
tiles = {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_normal.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
@ -605,7 +605,7 @@ minetest.register_node("mcl_core:redsandstone", {
minetest.register_node("mcl_core:redsandstonesmooth", {
description = "Smooth Red Sandstone",
_doc_items_longdesc = "Smooth red sandstone is a decorational building block.",
tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_smooth.png"},
tiles = {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_smooth.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
@ -617,7 +617,7 @@ minetest.register_node("mcl_core:redsandstonesmooth", {
minetest.register_node("mcl_core:redsandstonecarved", {
description = "Chiseled Red Sandstone",
_doc_items_longdesc = "Chiseled red sandstone is a decorational building block.",
tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_carved.png"},
tiles = {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_carved.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
@ -764,7 +764,7 @@ minetest.register_node("mcl_core:wood", {
minetest.register_node("mcl_core:darktree", {
description = "Dark Oak Wood",
_doc_items_longdesc = "The trunk of a dark oak tree.",
tiles = {"default_log_big_oak_top.png", "default_log_big_oak_top.png", "default_log_big_oak.png"},
tiles = {"mcl_core_log_big_oak_top.png", "mcl_core_log_big_oak_top.png", "mcl_core_log_big_oak.png"},
paramtype2 = "facedir",
on_place = mcl_util.rotate_axis,
stack_max = 64,
@ -779,9 +779,9 @@ minetest.register_node("mcl_core:darksapling", {
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a dark oak sapling will grow into a dark oak tree after some time. If the tree can't grow because of darkness, the sapling will uproot.",
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sapling_big_oak.png"},
inventory_image = "default_sapling_big_oak.png",
wield_image = "default_sapling_big_oak.png",
tiles = {"mcl_core_sapling_big_oak.png"},
inventory_image = "mcl_core_sapling_big_oak.png",
wield_image = "mcl_core_sapling_big_oak.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
@ -808,7 +808,7 @@ minetest.register_node("mcl_core:darkleaves", {
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
visual_scale = 1.3,
tiles = {"default_leaves_big_oak.png"},
tiles = {"mcl_core_leaves_big_oak.png"},
paramtype = "light",
stack_max = 64,
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1, dig_by_piston=1},
@ -835,7 +835,7 @@ minetest.register_node("mcl_core:darkleaves", {
minetest.register_node("mcl_core:darkwood", {
description = "Dark Oak Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_planks_big_oak.png"},
tiles = {"mcl_core_planks_big_oak.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
@ -952,7 +952,7 @@ minetest.register_node("mcl_core:junglesapling", {
minetest.register_node("mcl_core:acaciatree", {
description = "Acacia Wood",
_doc_items_longdesc = "The trunk of an acacia.",
tiles = {"default_acaciatree_top.png", "default_acaciatree_top.png", "default_acaciatree.png"},
tiles = {"default_acacia_tree_top.png", "default_acacia_tree_top.png", "default_acacia_tree.png"},
stack_max = 64,
paramtype2 = "facedir",
on_place = mcl_util.rotate_axis,
@ -965,7 +965,7 @@ minetest.register_node("mcl_core:acaciatree", {
minetest.register_node("mcl_core:acaciawood", {
description = "Acacia Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_acaciawood.png"},
tiles = {"default_acacia_wood.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
@ -980,7 +980,7 @@ minetest.register_node("mcl_core:acacialeaves", {
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
visual_scale = 1.3,
tiles = {"default_acacialeaves.png"},
tiles = {"default_acacia_leaves.png"},
paramtype = "light",
stack_max = 64,
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1, dig_by_piston=1},
@ -1003,9 +1003,9 @@ minetest.register_node("mcl_core:acaciasapling", {
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, an acacia sapling will grow into an acacia tree after some time. If the tree can't grow because of darkness, the sapling will uproot.",
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_acaciasapling.png"},
inventory_image = "default_acaciasapling.png",
wield_image = "default_acaciasapling.png",
tiles = {"default_acacia_sapling.png"},
inventory_image = "default_acacia_sapling.png",
wield_image = "default_acacia_sapling.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
@ -1031,7 +1031,7 @@ minetest.register_node("mcl_core:acaciasapling", {
minetest.register_node("mcl_core:sprucetree", {
description = "Spruce Wood",
_doc_items_longdesc = "The trunk of a spruce tree.",
tiles = {"default_sprucetree_top.png", "default_sprucetree_top.png", "default_sprucetree.png"},
tiles = {"mcl_core_log_spruce_top.png", "mcl_core_log_spruce_top.png", "mcl_core_log_spruce.png"},
stack_max = 64,
paramtype2 = "facedir",
on_place = mcl_util.rotate_axis,
@ -1044,7 +1044,7 @@ minetest.register_node("mcl_core:sprucetree", {
minetest.register_node("mcl_core:sprucewood", {
description = "Spruce Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_sprucewood.png"},
tiles = {"mcl_core_planks_spruce.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
@ -1059,7 +1059,7 @@ minetest.register_node("mcl_core:spruceleaves", {
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
visual_scale = 1.3,
tiles = {"default_spruceleaves.png"},
tiles = {"mcl_core_leaves_spruce.png"},
paramtype = "light",
stack_max = 64,
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1, dig_by_piston=1},
@ -1088,9 +1088,9 @@ minetest.register_node("mcl_core:sprucesapling", {
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a spruce sapling will grow into a spruce tree after some time. If the tree can't grow because of darkness, the sapling will uproot.",
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sprucesapling.png"},
inventory_image = "default_sprucesapling.png",
wield_image = "default_sprucesapling.png",
tiles = {"mcl_core_sapling_spruce.png"},
inventory_image = "mcl_core_sapling_spruce.png",
wield_image = "mcl_core_sapling_spruce.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
@ -1116,7 +1116,7 @@ minetest.register_node("mcl_core:sprucesapling", {
minetest.register_node("mcl_core:birchtree", {
description = "Birch Wood",
_doc_items_longdesc = "The trunk of a birch tree.",
tiles = {"default_log_birch_top.png", "default_log_birch_top.png", "default_log_birch.png"},
tiles = {"mcl_core_log_birch_top.png", "mcl_core_log_birch_top.png", "mcl_core_log_birch.png"},
stack_max = 64,
paramtype2 = "facedir",
on_place = mcl_util.rotate_axis,
@ -1129,7 +1129,7 @@ minetest.register_node("mcl_core:birchtree", {
minetest.register_node("mcl_core:birchwood", {
description = "Birch Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_planks_birch.png"},
tiles = {"mcl_core_planks_birch.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
@ -1144,7 +1144,7 @@ minetest.register_node("mcl_core:birchleaves", {
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
visual_scale = 1.3,
tiles = {"default_leaves_birch.png"},
tiles = {"mcl_core_leaves_birch.png"},
paramtype = "light",
stack_max = 64,
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1, dig_by_piston=1},
@ -1168,9 +1168,9 @@ minetest.register_node("mcl_core:birchsapling", {
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a birch sapling will grow into a birch tree after some time. If the tree can't grow because of darkness, the sapling will uproot.",
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sapling_birch.png"},
inventory_image = "default_sapling_birch.png",
wield_image = "default_sapling_birch.png",
tiles = {"mcl_core_sapling_birch.png"},
inventory_image = "mcl_core_sapling_birch.png",
wield_image = "mcl_core_sapling_birch.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
@ -1196,7 +1196,7 @@ minetest.register_node("mcl_core:cactus", {
_doc_items_longdesc = "This is a piece of cactus commonly found in dry areas, especially deserts. Over time, cacti will grow up to 3 blocks high on sand or red sand. A cactus hurts living beings touching it with a damage of 1 HP every half second. When a cactus block is broken, all cactus blocks connected above it will break as well.",
_doc_items_usagehelp = "A cactus can only be placed on top of another cactus or any sand.",
drawtype = "nodebox",
tiles = {"default_cactus_top.png", "default_cactus_bottom.png", "default_cactus_side.png","default_cactus_side.png","default_cactus_side.png","default_cactus_side.png"},
tiles = {"default_cactus_top.png", "mcl_core_cactus_bottom.png", "default_cactus_side.png","default_cactus_side.png","default_cactus_side.png","default_cactus_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1, attached_node=1, plant=1, deco_block=1, dig_by_piston=1},
@ -1266,8 +1266,8 @@ minetest.register_node("mcl_core:reeds", {
_doc_items_longdesc = "Sugar canes are a plant which has some uses in crafting. Sugar canes will slowly grow up to 3 blocks when they are next to water and are placed on a grass block, dirt, sand, red sand, podzol or coarse dirt. When a sugar cane is broken, all sugar canes connected above will break as well.",
drawtype = "plantlike",
tiles = {"default_papyrus.png"},
inventory_image = "default_sugar_cane.png",
wield_image = "default_sugar_cane.png",
inventory_image = "mcl_core_reeds.png",
wield_image = "mcl_core_reeds.png",
paramtype = "light",
walkable = false,
is_ground_content = true,
@ -1300,7 +1300,7 @@ minetest.register_node("mcl_core:reeds", {
minetest.register_node("mcl_core:bedrock", {
description = "Bedrock",
_doc_items_longdesc = "Bedrock is a very hard type of rock. It can not be broken, destroyed, collected or moved by normal means, unless in Creative Mode.",
tiles = {"default_bedrock.png"},
tiles = {"mcl_core_bedrock.png"},
stack_max = 64,
groups = {creative_breakable=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
@ -1324,7 +1324,7 @@ minetest.register_node("mcl_core:slimeblock", {
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
}
},
tiles = {"default_slimeblock.png"},
tiles = {"mcl_core_slime.png"},
paramtype = "light",
use_texture_alpha = true,
sunlight_propagates = true,
@ -1446,9 +1446,9 @@ minetest.register_node("mcl_core:vine", {
description = "Vines",
_doc_items_longdesc = "Vines are climbable blocks which can be placed on the sides and the top of solid blocks.",
drawtype = "signlike",
tiles = {"default_vine.png"},
inventory_image = "default_vine.png",
wield_image = "default_vine.png",
tiles = {"mcl_core_vine.png"},
inventory_image = "mcl_core_vine.png",
wield_image = "mcl_core_vine.png",
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "wallmounted",
@ -1768,7 +1768,7 @@ minetest.register_node("mcl_core:diamondblock", {
minetest.register_node("mcl_core:lapisblock", {
description = "Lapis Lazuli Block",
_doc_items_longdesc = "A lapis lazuli block is mostly a decorational block but also useful as a compact storage of lapis lazuli.",
tiles = {"default_lapis_block.png"},
tiles = {"mcl_core_lapis_block.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=3, building_block=1},
@ -1780,7 +1780,7 @@ minetest.register_node("mcl_core:lapisblock", {
minetest.register_node("mcl_core:emeraldblock", {
description = "Block of Emerald",
_doc_items_longdesc = "A block of emerald is mostly a shiny decorational block but also useful as a compact storage of emeralds.",
tiles = {"default_emerald_block.png"},
tiles = {"mcl_core_emerald_block.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=4, building_block=1},
@ -1860,7 +1860,7 @@ minetest.register_node("mcl_core:packed_ice", {
description = "Packed Ice",
_doc_items_longdesc = "Packed ice is a compressed form of ice. It is opaque and solid.",
drawtype = "glasslike",
tiles = {"default_ice_packed.png"},
tiles = {"mcl_core_ice_packed.png"},
is_ground_content = true,
paramtype = "light",
use_texture_alpha = true,
@ -1904,7 +1904,7 @@ for i=0,3 do
_doc_items_create_entry = use_doc,
_doc_items_longdesc = longdesc,
drawtype = "glasslike",
tiles = {"default_frosted_ice_"..i..".png"},
tiles = {"mcl_core_frosted_ice_"..i..".png"},
is_ground_content = false,
paramtype = "light",
use_texture_alpha = true,

View File

Before

Width:  |  Height:  |  Size: 867 B

After

Width:  |  Height:  |  Size: 867 B

View File

Before

Width:  |  Height:  |  Size: 365 B

After

Width:  |  Height:  |  Size: 365 B

View File

Before

Width:  |  Height:  |  Size: 790 B

After

Width:  |  Height:  |  Size: 790 B

View File

Before

Width:  |  Height:  |  Size: 786 B

After

Width:  |  Height:  |  Size: 786 B

View File

Before

Width:  |  Height:  |  Size: 346 B

After

Width:  |  Height:  |  Size: 346 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 408 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 B

View File

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 261 B

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 327 B

After

Width:  |  Height:  |  Size: 327 B

View File

Before

Width:  |  Height:  |  Size: 283 B

After

Width:  |  Height:  |  Size: 283 B

View File

Before

Width:  |  Height:  |  Size: 187 B

After

Width:  |  Height:  |  Size: 187 B

View File

Before

Width:  |  Height:  |  Size: 902 B

After

Width:  |  Height:  |  Size: 902 B

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

Before

Width:  |  Height:  |  Size: 435 B

After

Width:  |  Height:  |  Size: 435 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 760 B

After

Width:  |  Height:  |  Size: 760 B

View File

Before

Width:  |  Height:  |  Size: 206 B

After

Width:  |  Height:  |  Size: 206 B

View File

Before

Width:  |  Height:  |  Size: 645 B

After

Width:  |  Height:  |  Size: 645 B

View File

Before

Width:  |  Height:  |  Size: 677 B

After

Width:  |  Height:  |  Size: 677 B

View File

Before

Width:  |  Height:  |  Size: 719 B

After

Width:  |  Height:  |  Size: 719 B

View File

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 202 B

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 295 B

After

Width:  |  Height:  |  Size: 295 B

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 453 B

After

Width:  |  Height:  |  Size: 453 B

View File

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

Before

Width:  |  Height:  |  Size: 733 B

After

Width:  |  Height:  |  Size: 733 B

View File

Before

Width:  |  Height:  |  Size: 768 B

After

Width:  |  Height:  |  Size: 768 B

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 462 B

After

Width:  |  Height:  |  Size: 462 B

View File

Before

Width:  |  Height:  |  Size: 337 B

After

Width:  |  Height:  |  Size: 337 B

View File

Before

Width:  |  Height:  |  Size: 871 B

After

Width:  |  Height:  |  Size: 871 B

View File

Before

Width:  |  Height:  |  Size: 903 B

After

Width:  |  Height:  |  Size: 903 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 867 B

After

Width:  |  Height:  |  Size: 867 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

View File

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 275 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 561 B

After

Width:  |  Height:  |  Size: 561 B

View File

Before

Width:  |  Height:  |  Size: 605 B

After

Width:  |  Height:  |  Size: 605 B

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 502 B

After

Width:  |  Height:  |  Size: 502 B

View File

Before

Width:  |  Height:  |  Size: 633 B

After

Width:  |  Height:  |  Size: 633 B

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 248 B

After

Width:  |  Height:  |  Size: 248 B

View File

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 385 B

View File

@ -242,11 +242,11 @@ local wood_sounds = mcl_sounds.node_sound_wood_defaults()
local woods = {
{"", "Oak Fence", "Oak Fence Gate", "default_wood.png", "mcl_core:wood"},
{"spruce", "Spruce Fence", "Spruce Fence Gate", "default_sprucewood.png", "mcl_core:sprucewood"},
{"birch", "Birch Fence", "Birch Fence Gate", "default_planks_birch.png", "mcl_core:birchwood"},
{"spruce", "Spruce Fence", "Spruce Fence Gate", "mcl_core_planks_spruce.png", "mcl_core:sprucewood"},
{"birch", "Birch Fence", "Birch Fence Gate", "mcl_core_planks_birch.png", "mcl_core:birchwood"},
{"jungle", "Jungle Fence", "Jungle Fence Gate", "default_junglewood.png", "mcl_core:junglewood"},
{"dark_oak", "Dark Oak Fence", "Dark Oak Fence Gate", "default_planks_big_oak.png", "mcl_core:darkwood"},
{"acacia", "Acacia Fence", "Acacia Fence Gate", "default_acaciawood.png", "mcl_core:acaciawood"},
{"dark_oak", "Dark Oak Fence", "Dark Oak Fence Gate", "mcl_core_planks_big_oak.png", "mcl_core:darkwood"},
{"acacia", "Acacia Fence", "Acacia Fence Gate", "default_acacia_wood.png", "mcl_core:acaciawood"},
}
for w=1, #woods do

View File

Before

Width:  |  Height:  |  Size: 227 B

After

Width:  |  Height:  |  Size: 227 B

View File

@ -284,53 +284,53 @@ stairs.register_slab("junglewood", "mcl_core:junglewood",
stairs.register_stair("acaciawood", "mcl_core:acaciawood",
{handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1},
{"default_acaciawood.png"},
{"default_acacia_wood.png"},
"Acacia Wood Stairs",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_slab("acaciawood", "mcl_core:acaciawood",
{handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1},
{"default_acaciawood.png"},
{"default_acacia_wood.png"},
"Acacia Wood Slab",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_stair("sprucewood", "mcl_core:sprucewood",
{handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1},
{"default_sprucewood.png"},
{"mcl_core_planks_spruce.png"},
"Spruce Wood Stairs",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_slab("sprucewood", "mcl_core:sprucewood",
{handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1},
{"default_sprucewood.png"},
{"mcl_core_planks_spruce.png"},
"Spruce Wood Slab",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_stair("birchwood", "mcl_core:birchwood",
{handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1},
{"default_planks_birch.png"},
{"mcl_core_planks_birch.png"},
"Birch Wood Stairs",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_slab("birchwood", "mcl_core:birchwood",
{handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1},
{"default_planks_birch.png"},
{"mcl_core_planks_birch.png"},
"Birch Wood Slab",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_stair("darkwood", "mcl_core:darkwood",
{handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1},
{"default_planks_big_oak.png"},
{"mcl_core_planks_big_oak.png"},
"Dark Oak Wood Stairs",
mcl_sounds.node_sound_wood_defaults(),
2)
stairs.register_slab("darkwood", "mcl_core:darkwood",
{handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1},
{"default_planks_big_oak.png"},
{"mcl_core_planks_big_oak.png"},
"Dark Oak Wood Slab",
mcl_sounds.node_sound_wood_defaults(),
2)
@ -348,23 +348,23 @@ stairs.register_stair_and_slab_simple("brick_block", "mcl_core:brick_block", "Br
stairs.register_stair("sandstone", "group:sandstone",
{pickaxey=1, material_stone=1},
{"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"},
{"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_normal.png"},
"Sandstone Stairs",
mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_core:sandstone")
stairs.register_slab("sandstone", "group:sandstone",
{pickaxey=1, material_stone=1},
{"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"},
{"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_normal.png"},
"Sandstone Slab",
mcl_sounds.node_sound_stone_defaults(), 2, nil, "mcl_core:sandstone")
stairs.register_stair("redsandstone", "group:redsandstone",
{pickaxey=1, material_stone=1},
{"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"},
{"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_normal.png"},
"Red Sandstone Stairs",
mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_core:redsandstone")
stairs.register_slab("redsandstone", "group:redsandstone",
{pickaxey=1, material_stone=1},
{"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"},
{"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_normal.png"},
"Red Sandstone Slab",
mcl_sounds.node_sound_stone_defaults(), 2, nil, "mcl_core:redsandstone")

View File

@ -251,7 +251,7 @@ minetest.register_globalstep(function(dtime)
pos = {x=x, y=y, z=z},
expirationtime = 1,
size = 8,
texture = "default_barrier.png",
texture = "mcl_core_barrier.png",
playername = name
})
end