Added pure black and white blocks, compressed textures, added ignore-like nodes.
142
init.lua
@ -23,7 +23,7 @@ minetest.register_node(":default:cloud", {
|
|||||||
description = S("Cloud"),
|
description = S("Cloud"),
|
||||||
tiles = {"default_cloud.png"},
|
tiles = {"default_cloud.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_defaults(),
|
sounds = default.node_sound_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -37,13 +37,35 @@ minetest.register_craft({
|
|||||||
|
|
||||||
-- Nodes
|
-- Nodes
|
||||||
|
|
||||||
|
minetest.register_node("maptools:black", {
|
||||||
|
description = S("Black"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
tiles = {"black.png"},
|
||||||
|
drop = "",
|
||||||
|
post_effect_color = {a=255, r=0, g=0, b=0},
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("maptools:white", {
|
||||||
|
description = S("White"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
tiles = {"white.png"},
|
||||||
|
drop = "",
|
||||||
|
post_effect_color = {a=255, r=128, g=128, b=128},
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:stone", {
|
minetest.register_node("maptools:stone", {
|
||||||
description = S("Unbreakable Stone"),
|
description = S("Unbreakable Stone"),
|
||||||
range = 12,
|
range = 12,
|
||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_stone.png"},
|
tiles = {"default_stone.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -53,7 +75,7 @@ minetest.register_node("maptools:tree", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_tree.png"},
|
tiles = {"default_tree.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -63,7 +85,7 @@ minetest.register_node("maptools:dirt", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_dirt.png"},
|
tiles = {"default_dirt.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_dirt_defaults(),
|
sounds = default.node_sound_dirt_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -73,7 +95,7 @@ minetest.register_node("maptools:wood", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_wood.png"},
|
tiles = {"default_wood.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -86,7 +108,7 @@ minetest.register_node("maptools:glass", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -98,7 +120,7 @@ minetest.register_node("maptools:leaves", {
|
|||||||
tiles = {"default_leaves.png"},
|
tiles = {"default_leaves.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -108,7 +130,7 @@ minetest.register_node("maptools:sand", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_sand.png"},
|
tiles = {"default_sand.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_sand_defaults(),
|
sounds = default.node_sound_sand_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -118,7 +140,7 @@ minetest.register_node("maptools:gravel", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_gravel.png"},
|
tiles = {"default_gravel.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_dirt_defaults({
|
sounds = default.node_sound_dirt_defaults({
|
||||||
footstep = {name="default_gravel_footstep", gain=0.35},
|
footstep = {name="default_gravel_footstep", gain=0.35},
|
||||||
dug = {name="default_gravel_footstep", gain=0.6},
|
dug = {name="default_gravel_footstep", gain=0.6},
|
||||||
@ -131,7 +153,7 @@ minetest.register_node("maptools:desert_sand", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_desert_sand.png"},
|
tiles = {"default_desert_sand.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_sand_defaults(),
|
sounds = default.node_sound_sand_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -141,7 +163,7 @@ minetest.register_node("maptools:sandstone", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_sandstone.png"},
|
tiles = {"default_sandstone.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -151,7 +173,7 @@ minetest.register_node("maptools:desert_stone", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_desert_stone.png"},
|
tiles = {"default_desert_stone.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -161,7 +183,7 @@ minetest.register_node("maptools:grass", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_dirt_defaults({
|
sounds = default.node_sound_dirt_defaults({
|
||||||
footstep = {name="default_grass_footstep", gain=0.4},
|
footstep = {name="default_grass_footstep", gain=0.4},
|
||||||
}),
|
}),
|
||||||
@ -173,7 +195,7 @@ minetest.register_node("maptools:fullgrass", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_grass.png"},
|
tiles = {"default_grass.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_dirt_defaults({
|
sounds = default.node_sound_dirt_defaults({
|
||||||
footstep = {name="default_grass_footstep", gain=0.4},
|
footstep = {name="default_grass_footstep", gain=0.4},
|
||||||
}),
|
}),
|
||||||
@ -185,7 +207,7 @@ minetest.register_node("maptools:cobble", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_cobble.png"},
|
tiles = {"default_cobble.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -195,7 +217,7 @@ minetest.register_node("maptools:mossycobble", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_mossycobble.png"},
|
tiles = {"default_mossycobble.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -205,7 +227,7 @@ minetest.register_node("maptools:brick", {
|
|||||||
stack_max = 10000,
|
stack_max = 10000,
|
||||||
tiles = {"default_brick.png"},
|
tiles = {"default_brick.png"},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -219,7 +241,7 @@ minetest.register_node("maptools:playerclip", {
|
|||||||
pointable = false,
|
pointable = false,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:fullclip", {
|
minetest.register_node("maptools:fullclip", {
|
||||||
@ -231,7 +253,59 @@ minetest.register_node("maptools:fullclip", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
|
})
|
||||||
|
minetest.register_node("maptools:ignore_like", {
|
||||||
|
description = S("Ignore-like"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
inventory_image = "default_steel_block.png^dye_pink.png",
|
||||||
|
tiles = {"invisible.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = "",
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("maptools:ignore_like_no_clip", {
|
||||||
|
description = S("Ignore-like (no clip)"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
inventory_image = "default_steel_block.png^dye_purple.png",
|
||||||
|
tiles = {"invisible.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = "",
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_node("maptools:ignore_like_no_point", {
|
||||||
|
description = S("Ignore-like (no point)"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
inventory_image = "default_steel_block.png^dye_purple.png",
|
||||||
|
tiles = {"invisible.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
pointable = false,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = "",
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("maptools:ignore_like_no_clip_no_point", {
|
||||||
|
description = S("Ignore-like (no clip, no point)"),
|
||||||
|
range = 12,
|
||||||
|
stack_max = 10000,
|
||||||
|
inventory_image = "default_steel_block.png^dye_pink.png",
|
||||||
|
tiles = {"invisible.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
pointable = false,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = "",
|
||||||
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:fullclip_face", {
|
minetest.register_node("maptools:fullclip_face", {
|
||||||
@ -249,7 +323,7 @@ minetest.register_node("maptools:fullclip_face", {
|
|||||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||||
},
|
},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:playerclip_bottom", {
|
minetest.register_node("maptools:playerclip_bottom", {
|
||||||
@ -267,7 +341,7 @@ minetest.register_node("maptools:playerclip_bottom", {
|
|||||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||||
},
|
},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:playerclip_top", {
|
minetest.register_node("maptools:playerclip_top", {
|
||||||
@ -285,7 +359,7 @@ minetest.register_node("maptools:playerclip_top", {
|
|||||||
fixed = {-0.5, 0.4999, -0.5, 0.5, 0.5, 0.5},
|
fixed = {-0.5, 0.4999, -0.5, 0.5, 0.5, 0.5},
|
||||||
},
|
},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100},
|
||||||
})
|
})
|
||||||
|
|
||||||
for pusher_num=1,10,1 do
|
for pusher_num=1,10,1 do
|
||||||
@ -304,7 +378,7 @@ minetest.register_node("maptools:pusher_" .. pusher_num, {
|
|||||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||||
},
|
},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100, bouncy=pusher_num*100},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative, fall_damage_add_percent=-100, bouncy=pusher_num*100},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -320,7 +394,7 @@ minetest.register_node("maptools:lightbulb", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:nobuild", {
|
minetest.register_node("maptools:nobuild", {
|
||||||
@ -334,7 +408,7 @@ minetest.register_node("maptools:nobuild", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:nointeract", {
|
minetest.register_node("maptools:nointeract", {
|
||||||
@ -347,7 +421,7 @@ minetest.register_node("maptools:nointeract", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:climb", {
|
minetest.register_node("maptools:climb", {
|
||||||
@ -362,7 +436,7 @@ minetest.register_node("maptools:climb", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
for damage_num=1,5,1 do
|
for damage_num=1,5,1 do
|
||||||
@ -378,7 +452,7 @@ minetest.register_node("maptools:damage_" .. damage_num, {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -394,7 +468,7 @@ minetest.register_node("maptools:kill", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("maptools:smoke", {
|
minetest.register_node("maptools:smoke", {
|
||||||
@ -406,7 +480,7 @@ minetest.register_node("maptools:smoke", {
|
|||||||
walkable = false,
|
walkable = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
post_effect_color = {a=192, r=96, g=96, b=96},
|
post_effect_color = {a=192, r=96, g=96, b=96},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -426,7 +500,7 @@ minetest.register_node("maptools:ladder", {
|
|||||||
type = "wallmounted",
|
type = "wallmounted",
|
||||||
},
|
},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -443,7 +517,7 @@ minetest.register_node("maptools:permanent_fire", {
|
|||||||
inventory_image = "fire_basic_flame.png",
|
inventory_image = "fire_basic_flame.png",
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
damage_per_second = 4,
|
damage_per_second = 4,
|
||||||
@ -462,7 +536,7 @@ minetest.register_node("maptools:fake_fire", {
|
|||||||
inventory_image = "fire_basic_flame.png",
|
inventory_image = "fire_basic_flame.png",
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
})
|
})
|
||||||
@ -476,7 +550,7 @@ minetest.register_node("maptools:igniter", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
inventory_image = "fire_basic_flame.png",
|
inventory_image = "fire_basic_flame.png",
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {igniter=2, unbreakable=1, not_in_creative_inventory = maptools_creative},
|
groups = {igniter=2, unbreakable = 1, not_in_creative_inventory = maptools_creative},
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
pointable = false,
|
pointable = false,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
BIN
textures/black.png
Normal file
After Width: | Height: | Size: 67 B |
Before Width: | Height: | Size: 847 B After Width: | Height: | Size: 794 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 68 B |
Before Width: | Height: | Size: 279 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 217 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 217 B |
Before Width: | Height: | Size: 495 B After Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 217 B |
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 126 B |
BIN
textures/white.png
Normal file
After Width: | Height: | Size: 67 B |