123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- --[[
- Map Tools: node definitions
- Copyright (c) 2012-2015 Calinou and contributors.
- Licensed under the zlib license. See LICENSE.md for more information.
- --]]
- local S = maptools.intllib
- maptools.creative = maptools.config["hide_from_creative_inventory"]
- -- 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:playerclip", {
- description = S("Player Clip"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_green.png",
- drawtype = "airlike",
- paramtype = "light",
- pointable = false,
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:fake_walkable", {
- description = S("Player Clip"),
- drawtype = "nodebox",
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_green.png",
- drawtype = "airlike",
- paramtype = "light",
- pointable = false,
- sunlight_propagates = true,
- node_box = {
- type = "fixed",
- fixed = {
- {0, 0, 0, 0, 0, 0},
- },
- },
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:fullclip", {
- description = S("Full Clip"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_blue.png",
- drawtype = "airlike",
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:fake_walkable_pointable", {
- description = S("Player Clip"),
- drawtype = "nodebox",
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_green.png",
- drawtype = "airlike",
- paramtype = "light",
- sunlight_propagates = true,
- node_box = {
- type = "fixed",
- fixed = {
- {0, 0, 0, 0, 0, 0},
- },
- },
- drop = "",
- 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", {
- description = S("Full Clip Face"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_white.png",
- drawtype = "nodebox",
- tiles = {"invisible.png"},
- paramtype = "light",
- paramtype2 = "facedir",
- sunlight_propagates = true,
- node_box = {
- type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
- },
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100},
- })
- minetest.register_node("maptools:playerclip_bottom", {
- description = S("Player Clip Bottom Face"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_orange.png",
- drawtype = "nodebox",
- tiles = {"invisible.png"},
- pointable = false,
- paramtype = "light",
- sunlight_propagates = true,
- node_box = {
- type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
- },
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100},
- })
- minetest.register_node("maptools:playerclip_top", {
- description = S("Player Clip Top Face"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_yellow.png",
- drawtype = "nodebox",
- tiles = {"invisible.png"},
- pointable = false,
- paramtype = "light",
- sunlight_propagates = true,
- node_box = {
- type = "fixed",
- fixed = {-0.5, 0.4999, -0.5, 0.5, 0.5, 0.5},
- },
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100},
- })
- for pusher_num=1,10,1 do
- minetest.register_node("maptools:pusher_" .. pusher_num, {
- description = S("Pusher (%s)"):format(pusher_num),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^default_apple.png",
- drawtype = "nodebox",
- tiles = {"invisible.png"},
- paramtype = "light",
- paramtype2 = "facedir",
- sunlight_propagates = true,
- node_box = {
- type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
- },
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100, bouncy=pusher_num*100},
- })
- end
- minetest.register_node("maptools:lightbulb", {
- description = S("Light Bulb"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^default_mese_crystal_fragment.png",
- drawtype = "airlike",
- walkable = false,
- pointable = false,
- light_source = 14,
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:nobuild", {
- description = S("Build Prevention"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^bones_bones.png",
- drawtype = "airlike",
- walkable = false,
- pointable = false,
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:nointeract", {
- description = S("Interact Prevention"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^default_scorched_stuff.png",
- drawtype = "airlike",
- walkable = false,
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:climb", {
- description = S("Climb Block"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^default_ladder_wood.png",
- drawtype = "airlike",
- walkable = false,
- climbable = true,
- pointable = false,
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- for damage_num=1,5,1 do
- minetest.register_node("maptools:damage_" .. damage_num, {
- description = S("Damaging Block (%s)"):format(damage_num),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^farming_cotton_" .. damage_num .. ".png",
- drawtype = "airlike",
- walkable = false,
- pointable = false,
- damage_per_second = damage_num,
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- end
- minetest.register_node("maptools:kill", {
- description = S("Kill Block"),
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^dye_black.png",
- drawtype = "airlike",
- walkable = false,
- pointable = false,
- damage_per_second = 20,
- paramtype = "light",
- sunlight_propagates = true,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- })
- minetest.register_node("maptools:smoke", {
- description = S("Smoke Block"),
- range = 12,
- stack_max = 10000,
- tiles = {"maptools_smoke.png"},
- drawtype = "allfaces_optional",
- walkable = false,
- paramtype = "light",
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- post_effect_color = {a=192, r=96, g=96, b=96},
- })
- minetest.register_node("maptools:ladder", {
- description = S("Fake Ladder"),
- range = 12,
- stack_max = 10000,
- drawtype = "signlike",
- tiles = {"default_ladder_wood.png"},
- inventory_image = "default_ladder_wood.png",
- wield_image = "default_ladder_wood.png",
- paramtype = "light",
- paramtype2 = "wallmounted",
- walkable = false,
- sunlight_propagates = true,
- selection_box = {
- type = "wallmounted",
- },
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- sounds = default.node_sound_wood_defaults(),
- })
- minetest.register_node("maptools:permanent_fire", {
- description = S("Permanent Fire"),
- range = 12,
- stack_max = 10000,
- drawtype = "firelike",
- paramtype = "light",
- tiles = {{
- name="fire_basic_flame_animated.png",
- animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=1},
- }},
- inventory_image = "fire_basic_flame.png",
- light_source = 14,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, flame_sound = 1},
- sunlight_propagates = true,
- walkable = false,
- pointable = false,
- damage_per_second = 4,
-
- on_construct = function(pos)
- fireambiance.on_flame_addremove(pos)
- particles.add_flame_spawner(pos)
- end,
- after_destruct = function(pos)
- fireambiance.on_flame_addremove(pos)
- particles.del_flame_spawner(pos)
- end,
- })
- minetest.register_node("maptools:fake_fire", {
- description = S("Fake Fire"),
- range = 12,
- stack_max = 10000,
- drawtype = "firelike",
- paramtype = "light",
- tiles = {{
- name="fire_basic_flame_animated.png",
- animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=1},
- }},
- inventory_image = "fire_basic_flame.png",
- light_source = 14,
- drop = "",
- groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
- sunlight_propagates = true,
- walkable = false,
- on_construct = function(pos)
- fireambiance.on_flame_addremove(pos)
- particles.add_flame_spawner(pos)
- end,
- after_destruct = function(pos)
- fireambiance.on_flame_addremove(pos)
- particles.del_flame_spawner(pos)
- end,
- })
- minetest.register_node("maptools:igniter", {
- drawtype = "airlike",
- range = 12,
- stack_max = 10000,
- inventory_image = "default_steel_block.png^crosshair.png",
- description = S("Igniter"),
- paramtype = "light",
- inventory_image = "fire_basic_flame.png",
- drop = "",
- groups = {igniter=2, unbreakable = 1, not_in_creative_inventory = maptools.creative},
- sunlight_propagates = true,
- pointable = false,
- walkable = false,
- })
- minetest.register_node("maptools:superapple", {
- description = S("Super Apple"),
- range = 12,
- stack_max = 10000,
- drawtype = "plantlike",
- --visual_scale = 1.0,
- tiles = {"maptools_superapple.png"},
- inventory_image = "maptools_superapple.png",
- paramtype = "light",
- sunlight_propagates = true,
- selection_box = {
- type = "fixed",
- fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2}
- },
- walkable = false,
- groups = {fleshy=3, dig_immediate=3, not_in_creative_inventory = maptools.creative},
- on_use = minetest.item_eat(20),
- sounds = default.node_sound_defaults(),
- movement_speed_multiplier = default.SLOW_SPEED_PLANTS,
- })
|