2011-11-25 14:32:12 -05:00
|
|
|
-- Helper functions defined by builtin.lua:
|
|
|
|
-- dump2(obj, name="_", dumped={})
|
|
|
|
-- dump(obj, dumped={})
|
|
|
|
--
|
2011-12-02 20:43:20 -05:00
|
|
|
-- Mod load path
|
|
|
|
-- -------------
|
|
|
|
-- Generic:
|
|
|
|
-- $path_data/mods/
|
|
|
|
-- $path_userdata/usermods/
|
|
|
|
-- $mapdir/worldmods/
|
|
|
|
--
|
|
|
|
-- On a run-in-place version (eg. the distributed windows version):
|
2011-12-02 21:00:42 -05:00
|
|
|
-- minetest-0.4.x/data/mods/
|
2011-12-02 20:43:20 -05:00
|
|
|
-- minetest-0.4.x/usermods/
|
|
|
|
-- minetest-0.4.x/world/worldmods/
|
|
|
|
--
|
|
|
|
-- On an installed version on linux:
|
|
|
|
-- /usr/share/minetest/mods/
|
|
|
|
-- ~/.minetest/usermods
|
|
|
|
-- ~/.minetest/world/worldmods
|
|
|
|
--
|
2011-12-02 19:45:55 -05:00
|
|
|
-- Naming convention for registered textual names
|
|
|
|
-- ----------------------------------------------
|
2011-12-03 04:41:52 -05:00
|
|
|
-- "modname:<whatever>" (<whatever> can have characters a-zA-Z0-9_)
|
2011-12-02 19:45:55 -05:00
|
|
|
--
|
|
|
|
-- This is to prevent conflicting names from corrupting maps and is
|
|
|
|
-- enforced by the mod loader.
|
|
|
|
--
|
|
|
|
-- Example: mod "experimental", ideal item/node/entity name "tnt":
|
2011-12-03 04:41:52 -05:00
|
|
|
-- -> the name should be "experimental:tnt".
|
2011-12-02 19:45:55 -05:00
|
|
|
--
|
|
|
|
-- Enforcement can be overridden by prefixing the name with ":". This can
|
|
|
|
-- be used for overriding the registrations of some other mod.
|
|
|
|
--
|
2011-12-03 04:41:52 -05:00
|
|
|
-- Example: Any mod can redefine experimental:tnt by using the name
|
|
|
|
-- ":experimental:tnt" when registering it.
|
|
|
|
-- (also that mods is required to have "experimental" as a dependency)
|
|
|
|
--
|
2011-12-02 19:45:55 -05:00
|
|
|
-- Default mod uses ":" for maintaining backwards compatibility.
|
|
|
|
--
|
|
|
|
-- Textures
|
|
|
|
-- --------
|
|
|
|
-- Mods should generally prefix their textures with modname_, eg. given
|
|
|
|
-- the mod name "foomod", a texture could be called "foomod_superfurnace.png"
|
|
|
|
--
|
|
|
|
-- This is not crucial and a conflicting name will not corrupt maps.
|
|
|
|
--
|
|
|
|
-- Representations of simple things
|
|
|
|
-- --------------------------------
|
2011-11-15 01:48:24 -05:00
|
|
|
--
|
2011-12-01 16:33:48 -05:00
|
|
|
-- MapNode representation:
|
|
|
|
-- {name="name", param1=num, param2=num}
|
|
|
|
--
|
|
|
|
-- Position representation:
|
|
|
|
-- {x=num, y=num, z=num}
|
|
|
|
--
|
|
|
|
-- stackstring/itemstring: A stack of items in serialized format.
|
2011-12-02 05:12:07 -05:00
|
|
|
-- eg. 'node "dirt" 5'
|
|
|
|
-- eg. 'tool "WPick" 21323'
|
|
|
|
-- eg. 'craft "apple" 2'
|
2011-12-01 16:33:48 -05:00
|
|
|
--
|
|
|
|
-- item: A single item in Lua table format.
|
2011-12-02 05:12:07 -05:00
|
|
|
-- eg. {type="node", name="dirt"}
|
2011-12-01 16:33:48 -05:00
|
|
|
-- ^ a single dirt node
|
2011-12-02 05:12:07 -05:00
|
|
|
-- eg. {type="tool", name="WPick", wear=21323}
|
2011-12-01 16:33:48 -05:00
|
|
|
-- ^ a wooden pick about 1/3 weared out
|
2011-12-02 05:12:07 -05:00
|
|
|
-- eg. {type="craft", name="apple"}
|
2011-12-01 16:33:48 -05:00
|
|
|
-- ^ an apple.
|
|
|
|
--
|
2011-11-12 12:19:58 -05:00
|
|
|
-- Global functions:
|
2011-12-01 16:33:48 -05:00
|
|
|
-- minetest.register_entity(name, prototype table)
|
|
|
|
-- minetest.register_tool(name, tool definition)
|
|
|
|
-- minetest.register_node(name, node definition)
|
|
|
|
-- minetest.register_craftitem(name, craftitem definition)
|
|
|
|
-- minetest.register_craft(recipe)
|
|
|
|
-- minetest.register_globalstep(func(dtime))
|
2011-11-25 12:49:20 -05:00
|
|
|
-- minetest.register_on_placenode(func(pos, newnode, placer))
|
|
|
|
-- minetest.register_on_dignode(func(pos, oldnode, digger))
|
|
|
|
-- minetest.register_on_punchnode(func(pos, node, puncher))
|
2011-11-26 08:19:03 -05:00
|
|
|
-- minetest.register_on_generated(func(minp, maxp))
|
2011-11-25 20:20:19 -05:00
|
|
|
-- minetest.register_on_newplayer(func(ObjectRef))
|
|
|
|
-- minetest.register_on_respawnplayer(func(ObjectRef))
|
|
|
|
-- ^ return true in func to disable regular player placement
|
2011-11-27 12:39:36 -05:00
|
|
|
-- minetest.register_on_chat_message(func(name, message))
|
2011-12-02 05:43:57 -05:00
|
|
|
-- minetest.add_to_creative_inventory(itemstring)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- minetest.setting_get(name) -> string or nil
|
|
|
|
-- minetest.setting_getbool(name) -> boolean value or nil
|
2011-11-27 12:39:36 -05:00
|
|
|
-- minetest.chat_send_all(text)
|
|
|
|
-- minetest.chat_send_player(name, text)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- minetest.get_player_privs(name) -> set of privs
|
|
|
|
-- stackstring_take_item(stackstring) -> stackstring, item
|
|
|
|
-- stackstring_put_item(stackstring, item) -> stackstring, success
|
|
|
|
-- stackstring_put_stackstring(stackstring, stackstring) -> stackstring, success
|
2011-11-12 12:19:58 -05:00
|
|
|
--
|
|
|
|
-- Global objects:
|
|
|
|
-- minetest.env - environment reference
|
|
|
|
--
|
|
|
|
-- Global tables:
|
2011-11-25 19:26:19 -05:00
|
|
|
-- minetest.registered_nodes
|
2011-11-29 10:15:18 -05:00
|
|
|
-- ^ List of registered node definitions, indexed by name
|
|
|
|
-- minetest.registered_craftitems
|
|
|
|
-- ^ List of registered craft item definitions, indexed by name
|
2011-11-12 12:19:58 -05:00
|
|
|
-- minetest.registered_entities
|
|
|
|
-- ^ List of registered entity prototypes, indexed by name
|
|
|
|
-- minetest.object_refs
|
|
|
|
-- ^ List of object references, indexed by active object id
|
|
|
|
-- minetest.luaentities
|
|
|
|
-- ^ List of lua entities, indexed by active object id
|
|
|
|
--
|
2011-11-17 04:22:24 -05:00
|
|
|
-- EnvRef is basically ServerEnvironment and ServerMap combined.
|
2011-11-12 12:19:58 -05:00
|
|
|
-- EnvRef methods:
|
2011-11-17 09:21:17 -05:00
|
|
|
-- - add_node(pos, node)
|
|
|
|
-- - remove_node(pos)
|
|
|
|
-- - get_node(pos)
|
2011-11-21 04:15:15 -05:00
|
|
|
-- - add_luaentity(pos, name)
|
2011-11-29 10:15:18 -05:00
|
|
|
-- - add_item(pos, itemstring)
|
|
|
|
-- - add_rat(pos)
|
|
|
|
-- - add_firefly(pos)
|
2011-11-27 20:06:21 -05:00
|
|
|
-- - get_meta(pos) -- Get a NodeMetaRef at that position
|
2011-11-29 14:30:22 -05:00
|
|
|
-- - get_player_by_name(name) -- Get an ObjectRef to a player
|
2011-11-27 20:06:21 -05:00
|
|
|
--
|
|
|
|
-- NodeMetaRef
|
2011-11-28 10:11:14 -05:00
|
|
|
-- - get_type()
|
|
|
|
-- - allows_text_input()
|
|
|
|
-- - set_text(text) -- eg. set the text of a sign
|
|
|
|
-- - get_text()
|
|
|
|
-- - get_owner()
|
2011-12-01 03:55:25 -05:00
|
|
|
-- Generic node metadata specific:
|
2011-11-28 10:11:14 -05:00
|
|
|
-- - set_infotext(infotext)
|
|
|
|
-- - inventory_set_list(name, {item1, item2, ...})
|
|
|
|
-- - inventory_get_list(name)
|
|
|
|
-- - set_inventory_draw_spec(string)
|
|
|
|
-- - set_allow_text_input(bool)
|
|
|
|
-- - set_allow_removal(bool)
|
|
|
|
-- - set_enforce_owner(bool)
|
|
|
|
-- - is_inventory_modified()
|
|
|
|
-- - reset_inventory_modified()
|
|
|
|
-- - is_text_modified()
|
|
|
|
-- - reset_text_modified()
|
|
|
|
-- - set_string(name, value)
|
|
|
|
-- - get_string(name)
|
2011-11-12 12:19:58 -05:00
|
|
|
--
|
2011-11-17 04:22:24 -05:00
|
|
|
-- ObjectRef is basically ServerActiveObject.
|
2011-11-12 12:19:58 -05:00
|
|
|
-- ObjectRef methods:
|
|
|
|
-- - remove(): remove object (after returning from Lua)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- - getpos() -> {x=num, y=num, z=num}
|
2011-11-12 12:19:58 -05:00
|
|
|
-- - setpos(pos); pos={x=num, y=num, z=num}
|
|
|
|
-- - moveto(pos, continuous=false): interpolated move
|
2011-12-02 04:51:41 -05:00
|
|
|
-- - punch(puncher, time_from_last_punch)
|
|
|
|
-- ^ puncher = an another ObjectRef,
|
|
|
|
-- ^ time_from_last_punch = time since last punch action of the puncher
|
2011-11-30 13:54:54 -05:00
|
|
|
-- - right_click(clicker); clicker = an another ObjectRef
|
2011-12-01 16:33:48 -05:00
|
|
|
-- - get_wield_digging_properties() -> digging property table
|
2011-11-29 10:15:18 -05:00
|
|
|
-- - add_to_inventory_later(itemstring): like above, but after callback returns (only allowed for craftitem callbacks)
|
|
|
|
-- - get_hp(): returns number of hitpoints (2 * number of hearts)
|
|
|
|
-- - set_hp(hp): set number of hitpoints (2 * number of hearts)
|
2011-11-30 13:36:07 -05:00
|
|
|
-- LuaEntitySAO-only:
|
2011-11-30 13:54:54 -05:00
|
|
|
-- - setvelocity({x=num, y=num, z=num})
|
|
|
|
-- - setacceleration({x=num, y=num, z=num})
|
2011-12-01 16:33:48 -05:00
|
|
|
-- - getacceleration() -> {x=num, y=num, z=num}
|
2011-11-26 21:31:05 -05:00
|
|
|
-- - settexturemod(mod)
|
|
|
|
-- - setsprite(p={x=0,y=0}, num_frames=1, framelength=0.2,
|
|
|
|
-- - select_horiz_by_yawpitch=false)
|
2011-11-30 16:38:18 -05:00
|
|
|
-- Player-only:
|
|
|
|
-- - get_player_name(): will return nil if is not a player
|
|
|
|
-- - inventory_set_list(name, {item1, item2, ...})
|
2011-12-01 16:33:48 -05:00
|
|
|
-- - inventory_get_list(name) -> {item1, item2, ...}
|
|
|
|
-- - damage_wielded_item(num) (item damage/wear range is 0-65535)
|
|
|
|
-- - add_to_inventory(itemstring): add an item to object inventory
|
2011-11-12 12:19:58 -05:00
|
|
|
--
|
|
|
|
-- Registered entities:
|
|
|
|
-- - Functions receive a "luaentity" as self:
|
|
|
|
-- - It has the member .object, which is an ObjectRef pointing to the object
|
|
|
|
-- - The original prototype stuff is visible directly via a metatable
|
2011-11-21 04:15:15 -05:00
|
|
|
-- - Callbacks:
|
|
|
|
-- - on_activate(self, staticdata)
|
|
|
|
-- - on_step(self, dtime)
|
|
|
|
-- - on_punch(self, hitter)
|
|
|
|
-- - on_rightclick(self, clicker)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- - get_staticdata(self)
|
|
|
|
-- ^ return string that will be passed to on_activate when the object
|
|
|
|
-- is created next time
|
2011-11-12 12:19:58 -05:00
|
|
|
--
|
2011-12-01 16:33:48 -05:00
|
|
|
-- Entity prototype table:
|
|
|
|
-- {
|
|
|
|
-- physical = true,
|
|
|
|
-- collisionbox = {-0.5,-0.5,-0.5, 0.5,0.5,0.5},
|
|
|
|
-- visual = "cube",
|
|
|
|
-- textures = {texture,texture,texture,texture,texture,texture},
|
|
|
|
-- on_activate = function(self, staticdata),
|
|
|
|
-- on_step = function(self, dtime),
|
|
|
|
-- on_punch = function(self, hitter),
|
|
|
|
-- on_rightclick = function(self, clicker),
|
|
|
|
-- get_staticdata = function(self),
|
|
|
|
-- # Also you can define arbitrary member variables here
|
|
|
|
-- myvariable = whatever,
|
|
|
|
-- }
|
2011-11-17 04:22:24 -05:00
|
|
|
--
|
2011-12-01 16:33:48 -05:00
|
|
|
-- Tool definition:
|
|
|
|
-- {
|
|
|
|
-- image = "tool_steelaxe.png",
|
|
|
|
-- full_punch_interval = 1.0,
|
|
|
|
-- basetime = 1.0,
|
|
|
|
-- dt_weight = 0.5,
|
|
|
|
-- dt_crackiness = -0.2,
|
|
|
|
-- dt_crumbliness = 1,
|
|
|
|
-- dt_cuttability = -0.5,
|
|
|
|
-- basedurability = 330,
|
|
|
|
-- dd_weight = 0,
|
|
|
|
-- dd_crackiness = 0,
|
|
|
|
-- dd_crumbliness = 0,
|
|
|
|
-- dd_cuttability = 0,
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Node definition options:
|
|
|
|
-- {
|
|
|
|
-- name = "somenode",
|
|
|
|
-- drawtype = "normal",
|
|
|
|
-- visual_scale = 1.0,
|
|
|
|
-- tile_images = {"unknown_block.png"},
|
|
|
|
-- inventory_image = "unknown_block.png",
|
|
|
|
-- special_materials = {
|
|
|
|
-- {image="", backface_culling=true},
|
|
|
|
-- {image="", backface_culling=true},
|
|
|
|
-- },
|
|
|
|
-- alpha = 255,
|
|
|
|
-- post_effect_color = {a=0, r=0, g=0, b=0},
|
|
|
|
-- paramtype = "none",
|
|
|
|
-- is_ground_content = false,
|
|
|
|
-- light_propagates = false,
|
|
|
|
-- sunlight_propagates = false,
|
|
|
|
-- walkable = true,
|
|
|
|
-- pointable = true,
|
|
|
|
-- diggable = true,
|
|
|
|
-- climbable = false,
|
|
|
|
-- buildable_to = false,
|
|
|
|
-- wall_mounted = false,
|
|
|
|
-- often_contains_mineral = false,
|
|
|
|
-- dug_item = "",
|
|
|
|
-- extra_dug_item = "",
|
|
|
|
-- extra_dug_item_rarity = 2,
|
|
|
|
-- metadata_name = "",
|
|
|
|
-- liquidtype = "none",
|
|
|
|
-- liquid_alternative_flowing = "",
|
|
|
|
-- liquid_alternative_source = "",
|
|
|
|
-- liquid_viscosity = 0,
|
|
|
|
-- light_source = 0,
|
|
|
|
-- damage_per_second = 0,
|
|
|
|
-- selection_box = {type="regular"},
|
|
|
|
-- material = {
|
|
|
|
-- diggablity = "normal",
|
|
|
|
-- weight = 0,
|
|
|
|
-- crackiness = 0,
|
|
|
|
-- crumbliness = 0,
|
|
|
|
-- cuttability = 0,
|
|
|
|
-- flammability = 0,
|
|
|
|
-- },
|
|
|
|
-- cookresult_item = "", -- Cannot be cooked
|
|
|
|
-- furnace_cooktime = 3.0,
|
|
|
|
-- furnace_burntime = -1, -- Cannot be used as fuel
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Craftitem definition options:
|
2011-12-02 19:48:06 -05:00
|
|
|
-- minetest.register_craftitem("modname_name", {
|
2011-12-01 16:33:48 -05:00
|
|
|
-- image = "image.png",
|
|
|
|
-- stack_max = <maximum number of items in stack>,
|
|
|
|
-- cookresult_item = itemstring (result of cooking),
|
|
|
|
-- furnace_cooktime = <cooking time>,
|
|
|
|
-- furnace_burntime = <time to burn as fuel in furnace>,
|
|
|
|
-- usable = <uh... some boolean value>,
|
|
|
|
-- dropcount = <amount of items to drop using drop action>
|
|
|
|
-- liquids_pointable = <whether can point liquids>,
|
|
|
|
-- on_drop = func(item, dropper, pos),
|
|
|
|
-- on_place_on_ground = func(item, placer, pos),
|
|
|
|
-- on_use = func(item, player, pointed_thing),
|
|
|
|
-- })
|
|
|
|
--
|
|
|
|
-- Recipe:
|
|
|
|
-- {
|
2011-12-02 05:12:07 -05:00
|
|
|
-- output = 'tool "STPick"',
|
2011-12-01 16:33:48 -05:00
|
|
|
-- recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
-- {'node "cobble"', 'node "cobble"', 'node "cobble"'},
|
|
|
|
-- {'', 'craft "Stick"', ''},
|
|
|
|
-- {'', 'craft "Stick"', ''},
|
2011-12-01 16:33:48 -05:00
|
|
|
-- }
|
|
|
|
-- }
|
2011-11-17 09:21:17 -05:00
|
|
|
--
|
2011-11-12 12:19:58 -05:00
|
|
|
|
2011-11-17 09:21:17 -05:00
|
|
|
-- print("minetest dump: "..dump(minetest))
|
2011-11-17 04:22:24 -05:00
|
|
|
|
2011-11-25 17:09:36 -05:00
|
|
|
WATER_ALPHA = 160
|
|
|
|
WATER_VISC = 1
|
|
|
|
LAVA_VISC = 7
|
|
|
|
LIGHT_MAX = 14
|
|
|
|
|
2011-11-25 09:34:12 -05:00
|
|
|
--
|
|
|
|
-- Tool definition
|
|
|
|
--
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":WPick", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_woodpick.png",
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 0,
|
|
|
|
dt_crackiness = -0.5,
|
|
|
|
dt_crumbliness = 2,
|
|
|
|
dt_cuttability = 0,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 30,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":STPick", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_stonepick.png",
|
|
|
|
basetime = 1.5,
|
|
|
|
dt_weight = 0,
|
|
|
|
dt_crackiness = -0.5,
|
|
|
|
dt_crumbliness = 2,
|
|
|
|
dt_cuttability = 0,
|
|
|
|
basedurability = 100,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":SteelPick", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_steelpick.png",
|
|
|
|
basetime = 1.0,
|
|
|
|
dt_weight = 0,
|
|
|
|
dt_crackiness = -0.5,
|
|
|
|
dt_crumbliness = 2,
|
|
|
|
dt_cuttability = 0,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 333,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":MesePick", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_mesepick.png",
|
|
|
|
basetime = 0,
|
|
|
|
dt_weight = 0,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = 0,
|
|
|
|
dt_cuttability = 0,
|
|
|
|
basedurability = 1337,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":WShovel", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_woodshovel.png",
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = 2,
|
|
|
|
dt_crumbliness = -1.5,
|
|
|
|
dt_cuttability = 0.3,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 30,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":STShovel", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_stoneshovel.png",
|
|
|
|
basetime = 1.5,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = 2,
|
|
|
|
dt_crumbliness = -1.5,
|
|
|
|
dt_cuttability = 0.1,
|
|
|
|
basedurability = 100,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":SteelShovel", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_steelshovel.png",
|
|
|
|
basetime = 1.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = 2,
|
|
|
|
dt_crumbliness = -1.5,
|
|
|
|
dt_cuttability = 0.0,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 330,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":WAxe", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_woodaxe.png",
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = -0.2,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -0.5,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 30,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":STAxe", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_stoneaxe.png",
|
|
|
|
basetime = 1.5,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = -0.2,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -0.5,
|
|
|
|
basedurability = 100,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":SteelAxe", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_steelaxe.png",
|
|
|
|
basetime = 1.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = -0.2,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -0.5,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 330,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":WSword", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_woodsword.png",
|
|
|
|
basetime = 3.0,
|
|
|
|
dt_weight = 3,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -1,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 30,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":STSword", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_stonesword.png",
|
|
|
|
basetime = 2.5,
|
|
|
|
dt_weight = 3,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -1,
|
|
|
|
basedurability = 100,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":SteelSword", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "tool_steelsword.png",
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 3,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -1,
|
2011-11-14 19:20:41 -05:00
|
|
|
basedurability = 330,
|
2011-11-14 19:03:28 -05:00
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
2011-11-29 10:44:07 -05:00
|
|
|
-- The hand
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_tool(":", {
|
2011-11-14 19:03:28 -05:00
|
|
|
image = "",
|
|
|
|
basetime = 0.5,
|
|
|
|
dt_weight = 1,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = -1,
|
|
|
|
dt_cuttability = 0,
|
|
|
|
basedurability = 50,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
})
|
|
|
|
|
2011-11-25 09:34:12 -05:00
|
|
|
--
|
|
|
|
-- Crafting definition
|
|
|
|
--
|
2011-11-16 19:28:46 -05:00
|
|
|
|
2011-11-17 03:16:02 -05:00
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "wood" 4',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "tree"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'craft "Stick" 4',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "wooden_fence" 2',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "Stick"', 'craft "Stick"', 'craft "Stick"'},
|
|
|
|
{'craft "Stick"', 'craft "Stick"', 'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "sign_wall" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
|
|
|
{'', 'craft "Stick"', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "torch" 4',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "lump_of_coal"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "WPick"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
|
|
|
{'', 'craft "Stick"', ''},
|
|
|
|
{'', 'craft "Stick"', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2011-11-16 19:28:46 -05:00
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "STPick"',
|
2011-11-16 19:28:46 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "cobble"', 'node "cobble"', 'node "cobble"'},
|
|
|
|
{'', 'craft "Stick"', ''},
|
|
|
|
{'', 'craft "Stick"', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "SteelPick"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "steel_ingot"', 'craft "steel_ingot"', 'craft "steel_ingot"'},
|
|
|
|
{'', 'craft "Stick"', ''},
|
|
|
|
{'', 'craft "Stick"', ''},
|
2011-11-16 19:28:46 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2011-11-17 03:16:02 -05:00
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "MesePick"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "mese"', 'node "mese"', 'node "mese"'},
|
|
|
|
{'', 'craft "Stick"', ''},
|
|
|
|
{'', 'craft "Stick"', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "WShovel"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"'},
|
|
|
|
{'craft "Stick"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "STShovel"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "cobble"'},
|
|
|
|
{'craft "Stick"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "SteelShovel"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "steel_ingot"'},
|
|
|
|
{'craft "Stick"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "WAxe"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"', 'node "wood"'},
|
|
|
|
{'node "wood"', 'craft "Stick"'},
|
|
|
|
{'', 'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "STAxe"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "cobble"', 'node "cobble"'},
|
|
|
|
{'node "cobble"', 'craft "Stick"'},
|
|
|
|
{'', 'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "SteelAxe"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "steel_ingot"', 'craft "steel_ingot"'},
|
|
|
|
{'craft "steel_ingot"', 'craft "Stick"'},
|
|
|
|
{'', 'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "WSword"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"'},
|
|
|
|
{'node "wood"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "STSword"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "cobble"'},
|
|
|
|
{'node "cobble"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'tool "SteelSword"',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "steel_ingot"'},
|
|
|
|
{'craft "steel_ingot"'},
|
|
|
|
{'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "rail" 15',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "steel_ingot"', '', 'craft "steel_ingot"'},
|
|
|
|
{'craft "steel_ingot"', 'craft "Stick"', 'craft "steel_ingot"'},
|
|
|
|
{'craft "steel_ingot"', '', 'craft "steel_ingot"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "chest" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
|
|
|
{'node "wood"', '', 'node "wood"'},
|
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "locked_chest" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
|
|
|
{'node "wood"', 'craft "steel_ingot"', 'node "wood"'},
|
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "furnace" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "cobble"', 'node "cobble"', 'node "cobble"'},
|
|
|
|
{'node "cobble"', '', 'node "cobble"'},
|
|
|
|
{'node "cobble"', 'node "cobble"', 'node "cobble"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "steelblock" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "steel_ingot"', 'craft "steel_ingot"', 'craft "steel_ingot"'},
|
|
|
|
{'craft "steel_ingot"', 'craft "steel_ingot"', 'craft "steel_ingot"'},
|
|
|
|
{'craft "steel_ingot"', 'craft "steel_ingot"', 'craft "steel_ingot"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "sandstone" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "sand"', 'node "sand"'},
|
|
|
|
{'node "sand"', 'node "sand"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "clay" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "lump_of_clay"', 'craft "lump_of_clay"'},
|
|
|
|
{'craft "lump_of_clay"', 'craft "lump_of_clay"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "brick" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "clay_brick"', 'craft "clay_brick"'},
|
|
|
|
{'craft "clay_brick"', 'craft "clay_brick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'craft "paper" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "papyrus"', 'node "papyrus"', 'node "papyrus"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'craft "book" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "paper"'},
|
|
|
|
{'craft "paper"'},
|
|
|
|
{'craft "paper"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "bookshelf" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
|
|
|
{'craft "book"', 'craft "book"', 'craft "book"'},
|
|
|
|
{'node "wood"', 'node "wood"', 'node "wood"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'node "ladder" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'craft "Stick"', '', 'craft "Stick"'},
|
|
|
|
{'craft "Stick"', 'craft "Stick"', 'craft "Stick"'},
|
|
|
|
{'craft "Stick"', '', 'craft "Stick"'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2011-12-02 05:12:07 -05:00
|
|
|
output = 'craft "apple_iron" 1',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2011-12-02 05:12:07 -05:00
|
|
|
{'', 'craft "steel_ingot"', ''},
|
|
|
|
{'craft "steel_ingot"', 'craft "apple"', 'craft "steel_ingot"'},
|
|
|
|
{'', 'craft "steel_ingot"', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2011-11-25 09:34:12 -05:00
|
|
|
--
|
|
|
|
-- Node definitions
|
|
|
|
--
|
|
|
|
|
2011-11-25 11:57:47 -05:00
|
|
|
function digprop_constanttime(time)
|
|
|
|
return {
|
|
|
|
diggability = "constant",
|
|
|
|
constant_time = time,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function digprop_stonelike(toughness)
|
|
|
|
return {
|
|
|
|
diggablity = "normal",
|
|
|
|
weight = toughness * 5,
|
|
|
|
crackiness = 1,
|
|
|
|
crumbliness = -0.1,
|
|
|
|
cuttability = -0.2,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function digprop_dirtlike(toughness)
|
|
|
|
return {
|
|
|
|
diggablity = "normal",
|
|
|
|
weight = toughness * 1.2,
|
|
|
|
crackiness = 0,
|
|
|
|
crumbliness = 1.2,
|
|
|
|
cuttability = -0.4,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function digprop_gravellike(toughness)
|
|
|
|
return {
|
|
|
|
diggablity = "normal",
|
|
|
|
weight = toughness * 2,
|
|
|
|
crackiness = 0.2,
|
|
|
|
crumbliness = 1.5,
|
|
|
|
cuttability = -1.0,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function digprop_woodlike(toughness)
|
|
|
|
return {
|
|
|
|
diggablity = "normal",
|
|
|
|
weight = toughness * 1.0,
|
|
|
|
crackiness = 0.75,
|
|
|
|
crumbliness = -1.0,
|
|
|
|
cuttability = 1.5,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function digprop_leaveslike(toughness)
|
|
|
|
return {
|
|
|
|
diggablity = "normal",
|
|
|
|
weight = toughness * (-0.5),
|
|
|
|
crackiness = 0,
|
|
|
|
crumbliness = 0,
|
|
|
|
cuttability = 2.0,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function digprop_glasslike(toughness)
|
|
|
|
return {
|
|
|
|
diggablity = "normal",
|
|
|
|
weight = toughness * 0.1,
|
|
|
|
crackiness = 2.0,
|
|
|
|
crumbliness = -1.0,
|
|
|
|
cuttability = -1.0,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Legacy nodes
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":stone", {
|
2011-11-25 11:57:47 -05:00
|
|
|
tile_images = {"stone.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("stone.png"),
|
2011-11-25 11:57:47 -05:00
|
|
|
paramtype = "mineral",
|
|
|
|
is_ground_content = true,
|
|
|
|
often_contains_mineral = true, -- Texture atlas hint
|
|
|
|
material = digprop_stonelike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'node "cobble" 1',
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":dirt_with_grass", {
|
2011-11-25 11:57:47 -05:00
|
|
|
tile_images = {"grass.png", "mud.png", "mud.png^grass_side.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("mud.png^grass_side.png"),
|
2011-11-25 11:57:47 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_dirtlike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'node "dirt" 1',
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":dirt_with_grass_footsteps", {
|
2011-11-25 11:57:47 -05:00
|
|
|
tile_images = {"grass_footsteps.png", "mud.png", "mud.png^grass_side.png"},
|
|
|
|
inventory_image = "grass_footsteps.png",
|
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_dirtlike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'node "dirt" 1',
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":dirt", {
|
2011-11-25 11:57:47 -05:00
|
|
|
tile_images = {"mud.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("mud.png"),
|
2011-11-25 11:57:47 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_dirtlike(1.0),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":sand", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"sand.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("sand.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_dirtlike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'node "glass" 1',
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":gravel", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"gravel.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("gravel.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_gravellike(1.0),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":sandstone", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"sandstone.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("sandstone.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_dirtlike(1.0), -- FIXME should this be stonelike?
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'node "sand" 1', -- FIXME is this intentional?
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":clay", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"clay.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("clay.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_dirtlike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'craft "lump_of_clay" 4',
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":brick", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"brick.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("brick.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_stonelike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'craft "clay_brick" 4',
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":tree", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"tree_top.png", "tree_top.png", "tree.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("tree_top.png", "tree.png", "tree.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_woodlike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'craft "lump_of_coal" 1',
|
2011-11-25 17:09:36 -05:00
|
|
|
furnace_burntime = 30,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":jungletree", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"jungletree_top.png", "jungletree_top.png", "jungletree.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("jungletree_top.png", "jungletree.png", "jungletree.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_woodlike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'craft "lump_of_coal" 1',
|
2011-11-25 17:09:36 -05:00
|
|
|
furnace_burntime = 30,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":junglegrass", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.3,
|
|
|
|
tile_images = {"junglegrass.png"},
|
|
|
|
inventory_image = "junglegrass.png",
|
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
material = digprop_leaveslike(1.0),
|
|
|
|
furnace_burntime = 2,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":leaves", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "allfaces_optional",
|
|
|
|
visual_scale = 1.3,
|
|
|
|
tile_images = {"leaves.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("leaves.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
material = digprop_leaveslike(1.0),
|
2011-12-02 05:12:07 -05:00
|
|
|
extra_dug_item = 'node "sapling" 1',
|
2011-11-25 17:09:36 -05:00
|
|
|
extra_dug_item_rarity = 20,
|
|
|
|
furnace_burntime = 1,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":cactus", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"cactus_top.png", "cactus_top.png", "cactus_side.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("cactus_top.png", "cactus_side.png", "cactus_side.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_woodlike(0.75),
|
|
|
|
furnace_burntime = 15,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":papyrus", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tile_images = {"papyrus.png"},
|
|
|
|
inventory_image = "papyrus.png",
|
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
walkable = false,
|
|
|
|
material = digprop_leaveslike(0.5),
|
|
|
|
furnace_burntime = 1,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":bookshelf", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"wood.png", "wood.png", "bookshelf.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("wood.png", "bookshelf.png", "bookshelf.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_woodlike(0.75),
|
|
|
|
furnace_burntime = 30,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":glass", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "glasslike",
|
|
|
|
tile_images = {"glass.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("glass.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_glasslike(1.0),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":wooden_fence", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "fencelike",
|
|
|
|
tile_images = {"wood.png"},
|
|
|
|
inventory_image = "fence.png",
|
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
|
|
|
|
},
|
|
|
|
furnace_burntime = 15,
|
|
|
|
material = digprop_woodlike(0.75),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":rail", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "raillike",
|
|
|
|
tile_images = {"rail.png", "rail_curved.png", "rail_t_junction.png", "rail_crossing.png"},
|
|
|
|
inventory_image = "rail.png",
|
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
--fixed = <default>
|
|
|
|
},
|
|
|
|
material = digprop_dirtlike(0.75),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":ladder", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "signlike",
|
|
|
|
tile_images = {"ladder.png"},
|
|
|
|
inventory_image = "ladder.png",
|
|
|
|
light_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
wall_mounted = true,
|
|
|
|
walkable = false,
|
|
|
|
climbable = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
--wall_top = = <default>
|
|
|
|
--wall_bottom = = <default>
|
|
|
|
--wall_side = = <default>
|
|
|
|
},
|
|
|
|
furnace_burntime = 5,
|
|
|
|
material = digprop_woodlike(0.5),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":coalstone", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"stone.png^mineral_coal.png"},
|
|
|
|
inventory_image = "stone.png^mineral_coal.png",
|
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_stonelike(1.5),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":wood", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"wood.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("wood.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
furnace_burntime = 7,
|
|
|
|
material = digprop_woodlike(0.75),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":mese", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"mese.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("mese.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
furnace_burntime = 30,
|
|
|
|
material = digprop_stonelike(0.5),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":cloud", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"cloud.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("cloud.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":water_flowing", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "flowingliquid",
|
|
|
|
tile_images = {"water.png"},
|
|
|
|
alpha = WATER_ALPHA,
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("water.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "flowing",
|
|
|
|
liquid_alternative_flowing = "water_flowing",
|
|
|
|
liquid_alternative_source = "water_source",
|
|
|
|
liquid_viscosity = WATER_VISC,
|
|
|
|
post_effect_color = {a=64, r=100, g=100, b=200},
|
|
|
|
special_materials = {
|
|
|
|
{image="water.png", backface_culling=false},
|
|
|
|
{image="water.png", backface_culling=true},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":water_source", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "liquid",
|
|
|
|
tile_images = {"water.png"},
|
|
|
|
alpha = WATER_ALPHA,
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("water.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "source",
|
|
|
|
liquid_alternative_flowing = "water_flowing",
|
|
|
|
liquid_alternative_source = "water_source",
|
|
|
|
liquid_viscosity = WATER_VISC,
|
|
|
|
post_effect_color = {a=64, r=100, g=100, b=200},
|
|
|
|
special_materials = {
|
|
|
|
-- New-style water source material (mostly unused)
|
|
|
|
{image="water.png", backface_culling=false},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":lava_flowing", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "flowingliquid",
|
|
|
|
tile_images = {"lava.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("lava.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = false,
|
|
|
|
light_source = LIGHT_MAX - 1,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "flowing",
|
|
|
|
liquid_alternative_flowing = "lava_flowing",
|
|
|
|
liquid_alternative_source = "lava_source",
|
|
|
|
liquid_viscosity = LAVA_VISC,
|
|
|
|
damage_per_second = 4*2,
|
|
|
|
post_effect_color = {a=192, r=255, g=64, b=0},
|
|
|
|
special_materials = {
|
|
|
|
{image="lava.png", backface_culling=false},
|
|
|
|
{image="lava.png", backface_culling=true},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":lava_source", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "liquid",
|
|
|
|
tile_images = {"lava.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("lava.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = false,
|
|
|
|
light_source = LIGHT_MAX - 1,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "source",
|
|
|
|
liquid_alternative_flowing = "lava_flowing",
|
|
|
|
liquid_alternative_source = "lava_source",
|
|
|
|
liquid_viscosity = LAVA_VISC,
|
|
|
|
damage_per_second = 4*2,
|
|
|
|
post_effect_color = {a=192, r=255, g=64, b=0},
|
|
|
|
special_materials = {
|
|
|
|
-- New-style lava source material (mostly unused)
|
|
|
|
{image="lava.png", backface_culling=false},
|
|
|
|
},
|
|
|
|
furnace_burntime = 60,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":torch", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "torchlike",
|
|
|
|
tile_images = {"torch_on_floor.png", "torch_on_ceiling.png", "torch.png"},
|
|
|
|
inventory_image = "torch_on_floor.png",
|
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
wall_mounted = true,
|
|
|
|
light_source = LIGHT_MAX-1,
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1},
|
|
|
|
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
|
|
|
|
wall_side = {-0.5, -0.3, -0.1, -0.5+0.3, 0.3, 0.1},
|
|
|
|
},
|
|
|
|
material = digprop_constanttime(0.0),
|
|
|
|
furnace_burntime = 4,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":sign_wall", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "signlike",
|
|
|
|
tile_images = {"sign_wall.png"},
|
|
|
|
inventory_image = "sign_wall.png",
|
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
wall_mounted = true,
|
|
|
|
metadata_name = "sign",
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
--wall_top = <default>
|
|
|
|
--wall_bottom = <default>
|
|
|
|
--wall_side = <default>
|
|
|
|
},
|
|
|
|
material = digprop_constanttime(0.5),
|
|
|
|
furnace_burntime = 10,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":chest", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"chest_top.png", "chest_top.png", "chest_side.png",
|
|
|
|
"chest_side.png", "chest_side.png", "chest_front.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("chest_top.png", "chest_front.png", "chest_side.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "facedir_simple",
|
|
|
|
metadata_name = "chest",
|
|
|
|
material = digprop_woodlike(1.0),
|
|
|
|
furnace_burntime = 30,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":locked_chest", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"chest_top.png", "chest_top.png", "chest_side.png",
|
|
|
|
"chest_side.png", "chest_side.png", "chest_lock.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("chest_top.png", "chest_lock.png", "chest_side.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "facedir_simple",
|
|
|
|
metadata_name = "locked_chest",
|
|
|
|
material = digprop_woodlike(1.0),
|
|
|
|
furnace_burntime = 30,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":furnace", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"furnace_side.png", "furnace_side.png", "furnace_side.png",
|
|
|
|
"furnace_side.png", "furnace_side.png", "furnace_front.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("furnace_side.png", "furnace_front.png", "furnace_side.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "facedir_simple",
|
|
|
|
metadata_name = "furnace",
|
|
|
|
material = digprop_stonelike(3.0),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":cobble", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"cobble.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("cobble.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'node "stone" 1',
|
2011-11-25 17:09:36 -05:00
|
|
|
material = digprop_stonelike(0.9),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":mossycobble", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"mossycobble.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("mossycobble.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_stonelike(0.8),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":steelblock", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"steel_block.png"},
|
2011-12-03 02:40:32 -05:00
|
|
|
inventory_image = minetest.inventorycube("steel_block.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
material = digprop_stonelike(5.0),
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":nyancat", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"nc_side.png", "nc_side.png", "nc_side.png",
|
|
|
|
"nc_side.png", "nc_back.png", "nc_front.png"},
|
|
|
|
inventory_image = "nc_front.png",
|
|
|
|
paramtype = "facedir_simple",
|
|
|
|
material = digprop_stonelike(3.0),
|
|
|
|
furnace_burntime = 1,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":nyancat_rainbow", {
|
2011-11-25 17:09:36 -05:00
|
|
|
tile_images = {"nc_rb.png"},
|
|
|
|
inventory_image = "nc_rb.png",
|
|
|
|
material = digprop_stonelike(3.0),
|
|
|
|
furnace_burntime = 1,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":sapling", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.0,
|
|
|
|
tile_images = {"sapling.png"},
|
|
|
|
inventory_image = "sapling.png",
|
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
material = digprop_constanttime(0.0),
|
|
|
|
furnace_burntime = 10,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_node(":apple", {
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.0,
|
|
|
|
tile_images = {"apple.png"},
|
|
|
|
inventory_image = "apple.png",
|
|
|
|
paramtype = "light",
|
|
|
|
light_propagates = true,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
2011-12-02 05:12:07 -05:00
|
|
|
dug_item = 'craft "apple" 1',
|
2011-11-25 17:09:36 -05:00
|
|
|
material = digprop_constanttime(0.0),
|
|
|
|
furnace_burntime = 3,
|
|
|
|
})
|
|
|
|
|
2011-11-29 10:15:18 -05:00
|
|
|
--
|
|
|
|
-- Crafting items
|
|
|
|
--
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":Stick", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "stick.png",
|
|
|
|
--furnace_burntime = ...,
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":paper", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "paper.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":book", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "book.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":lump_of_coal", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "lump_of_coal.png",
|
|
|
|
furnace_burntime = 40;
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":lump_of_iron", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "lump_of_iron.png",
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'craft "steel_ingot" 1',
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":lump_of_clay", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "lump_of_clay.png",
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'craft "clay_brick" 1',
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":steel_ingot", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "steel_ingot.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":clay_brick", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "clay_brick.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":rat", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "rat.png",
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'craft "cooked_rat" 1',
|
2011-11-29 10:15:18 -05:00
|
|
|
on_drop = function(item, dropper, pos)
|
|
|
|
minetest.env:add_rat(pos)
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":cooked_rat", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "cooked_rat.png",
|
2011-12-02 05:12:07 -05:00
|
|
|
cookresult_item = 'craft "scorched_stuff" 1',
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
on_use = minetest.craftitem_eat(6),
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":scorched_stuff", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "scorched_stuff.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":firefly", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "firefly.png",
|
|
|
|
on_drop = function(item, dropper, pos)
|
|
|
|
minetest.env:add_firefly(pos)
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":apple", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "apple.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
on_use = minetest.craftitem_eat(4),
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 19:45:55 -05:00
|
|
|
minetest.register_craftitem(":apple_iron", {
|
2011-11-29 10:15:18 -05:00
|
|
|
image = "apple_iron.png",
|
2011-11-30 16:52:02 -05:00
|
|
|
on_place_on_ground = minetest.craftitem_place_item,
|
|
|
|
on_use = minetest.craftitem_eat(8),
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
print(dump(minetest.registered_craftitems))
|
|
|
|
|
2011-12-02 05:43:57 -05:00
|
|
|
--
|
|
|
|
-- Creative inventory
|
|
|
|
--
|
|
|
|
|
|
|
|
minetest.add_to_creative_inventory('tool MesePick 0')
|
|
|
|
minetest.add_to_creative_inventory('tool SteelPick 0')
|
|
|
|
minetest.add_to_creative_inventory('tool SteelAxe 0')
|
|
|
|
minetest.add_to_creative_inventory('tool SteelShovel 0')
|
|
|
|
|
|
|
|
minetest.add_to_creative_inventory('node torch 0')
|
|
|
|
minetest.add_to_creative_inventory('node cobble 0')
|
|
|
|
minetest.add_to_creative_inventory('node dirt 0')
|
|
|
|
minetest.add_to_creative_inventory('node stone 0')
|
|
|
|
minetest.add_to_creative_inventory('node sand 0')
|
|
|
|
minetest.add_to_creative_inventory('node sandstone 0')
|
|
|
|
minetest.add_to_creative_inventory('node clay 0')
|
|
|
|
minetest.add_to_creative_inventory('node brick 0')
|
|
|
|
minetest.add_to_creative_inventory('node tree 0')
|
|
|
|
minetest.add_to_creative_inventory('node leaves 0')
|
|
|
|
minetest.add_to_creative_inventory('node cactus 0')
|
|
|
|
minetest.add_to_creative_inventory('node papyrus 0')
|
|
|
|
minetest.add_to_creative_inventory('node bookshelf 0')
|
|
|
|
minetest.add_to_creative_inventory('node glass 0')
|
|
|
|
minetest.add_to_creative_inventory('node fence 0')
|
|
|
|
minetest.add_to_creative_inventory('node rail 0')
|
|
|
|
minetest.add_to_creative_inventory('node mese 0')
|
|
|
|
minetest.add_to_creative_inventory('node chest 0')
|
|
|
|
minetest.add_to_creative_inventory('node furnace 0')
|
|
|
|
minetest.add_to_creative_inventory('node sign_wall 0')
|
|
|
|
minetest.add_to_creative_inventory('node water_source 0')
|
|
|
|
minetest.add_to_creative_inventory('node lava_source 0')
|
|
|
|
minetest.add_to_creative_inventory('node ladder 0')
|
2011-11-29 10:15:18 -05:00
|
|
|
|
2011-11-17 09:21:17 -05:00
|
|
|
--
|
|
|
|
-- Some common functions
|
|
|
|
--
|
|
|
|
|
|
|
|
function nodeupdate_single(p)
|
|
|
|
n = minetest.env:get_node(p)
|
|
|
|
if n.name == "sand" or n.name == "gravel" then
|
|
|
|
p_bottom = {x=p.x, y=p.y-1, z=p.z}
|
|
|
|
n_bottom = minetest.env:get_node(p_bottom)
|
|
|
|
if n_bottom.name == "air" then
|
|
|
|
minetest.env:remove_node(p)
|
2011-12-03 04:41:52 -05:00
|
|
|
minetest.env:add_luaentity(p, "default:falling_"..n.name)
|
2011-11-17 09:21:17 -05:00
|
|
|
nodeupdate(p)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function nodeupdate(p)
|
|
|
|
for x = -1,1 do
|
|
|
|
for y = -1,1 do
|
|
|
|
for z = -1,1 do
|
|
|
|
p2 = {x=p.x+x, y=p.y+y, z=p.z+z}
|
|
|
|
nodeupdate_single(p2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Falling stuff
|
|
|
|
--
|
|
|
|
|
|
|
|
function register_falling_node(nodename, texture)
|
2011-12-03 04:41:52 -05:00
|
|
|
minetest.register_entity("default:falling_"..nodename, {
|
2011-11-17 09:21:17 -05:00
|
|
|
-- Static definition
|
2011-11-21 07:36:21 -05:00
|
|
|
physical = true,
|
2011-11-17 09:21:17 -05:00
|
|
|
collisionbox = {-0.5,-0.5,-0.5, 0.5,0.5,0.5},
|
|
|
|
visual = "cube",
|
|
|
|
textures = {texture,texture,texture,texture,texture,texture},
|
|
|
|
-- State
|
|
|
|
-- Methods
|
|
|
|
on_step = function(self, dtime)
|
2011-11-21 04:15:15 -05:00
|
|
|
-- Set gravity
|
|
|
|
self.object:setacceleration({x=0, y=-10, z=0})
|
2011-11-17 09:21:17 -05:00
|
|
|
-- Turn to actual sand when collides to ground or just move
|
2011-11-21 07:56:03 -05:00
|
|
|
local pos = self.object:getpos()
|
|
|
|
local bcp = {x=pos.x, y=pos.y-0.7, z=pos.z} -- Position of bottom center point
|
|
|
|
local bcn = minetest.env:get_node(bcp)
|
2011-11-17 09:21:17 -05:00
|
|
|
if bcn.name ~= "air" then
|
|
|
|
-- Turn to a sand node
|
2011-11-21 07:56:03 -05:00
|
|
|
local np = {x=bcp.x, y=bcp.y+1, z=bcp.z}
|
2011-11-17 09:21:17 -05:00
|
|
|
minetest.env:add_node(np, {name=nodename})
|
|
|
|
self.object:remove()
|
|
|
|
else
|
|
|
|
-- Do nothing
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
register_falling_node("sand", "sand.png")
|
|
|
|
register_falling_node("gravel", "gravel.png")
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Global callbacks
|
|
|
|
--
|
|
|
|
|
|
|
|
-- Global environment step function
|
|
|
|
function on_step(dtime)
|
|
|
|
-- print("on_step")
|
|
|
|
end
|
|
|
|
minetest.register_globalstep(on_step)
|
|
|
|
|
|
|
|
function on_placenode(p, node)
|
2011-12-02 19:45:55 -05:00
|
|
|
--print("on_placenode")
|
2011-11-17 09:21:17 -05:00
|
|
|
nodeupdate(p)
|
|
|
|
end
|
|
|
|
minetest.register_on_placenode(on_placenode)
|
|
|
|
|
|
|
|
function on_dignode(p, node)
|
2011-12-02 19:45:55 -05:00
|
|
|
--print("on_dignode")
|
2011-11-17 09:21:17 -05:00
|
|
|
nodeupdate(p)
|
|
|
|
end
|
|
|
|
minetest.register_on_dignode(on_dignode)
|
|
|
|
|
2011-11-21 04:15:15 -05:00
|
|
|
function on_punchnode(p, node)
|
|
|
|
end
|
|
|
|
minetest.register_on_punchnode(on_punchnode)
|
|
|
|
|
2011-11-29 14:30:22 -05:00
|
|
|
minetest.register_on_chat_message(function(name, message)
|
2011-12-02 09:24:56 -05:00
|
|
|
--print("default on_chat_message: name="..dump(name).." message="..dump(message))
|
2011-11-29 14:30:22 -05:00
|
|
|
local cmd = "/giveme"
|
|
|
|
if message:sub(0, #cmd) == cmd then
|
|
|
|
if not minetest.get_player_privs(name)["give"] then
|
|
|
|
minetest.chat_send_player(name, "you don't have permission to give")
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2011-12-01 19:17:01 -05:00
|
|
|
local stackstring = string.match(message, cmd.." (.*)")
|
2011-11-29 14:30:22 -05:00
|
|
|
if stackstring == nil then
|
|
|
|
minetest.chat_send_player(name, 'usage: '..cmd..' stackstring')
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
print(cmd..' invoked, stackstring="'..stackstring..'"')
|
2011-12-01 19:17:01 -05:00
|
|
|
local player = minetest.env:get_player_by_name(name)
|
|
|
|
if player == nil then
|
|
|
|
minetest.chat_send_player(name, name2..' is not a known player')
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
local added, error_msg = player:add_to_inventory(stackstring)
|
2011-11-29 14:30:22 -05:00
|
|
|
if added then
|
|
|
|
minetest.chat_send_player(name, '"'..stackstring
|
|
|
|
..'" added to inventory.');
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(name, 'Could not give "'..stackstring
|
|
|
|
..'": '..error_msg);
|
|
|
|
end
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
local cmd = "/give"
|
|
|
|
if message:sub(0, #cmd) == cmd then
|
|
|
|
if not minetest.get_player_privs(name)["give"] then
|
|
|
|
minetest.chat_send_player(name, "you don't have permission to give")
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2011-12-01 19:17:01 -05:00
|
|
|
local name2, stackstring = string.match(message, cmd.." ([%a%d_-]+) (.*)")
|
2011-11-29 14:30:22 -05:00
|
|
|
if name == nil or stackstring == nil then
|
|
|
|
minetest.chat_send_player(name, 'usage: '..cmd..' name stackstring')
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
print(cmd..' invoked, name2="'..name2
|
|
|
|
..'" stackstring="'..stackstring..'"')
|
2011-12-01 19:17:01 -05:00
|
|
|
local player = minetest.env:get_player_by_name(name2)
|
2011-11-29 14:30:22 -05:00
|
|
|
if player == nil then
|
|
|
|
minetest.chat_send_player(name, name2..' is not a known player')
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2011-12-01 19:17:01 -05:00
|
|
|
local added, error_msg = player:add_to_inventory(stackstring)
|
2011-11-29 14:30:22 -05:00
|
|
|
if added then
|
|
|
|
minetest.chat_send_player(name, '"'..stackstring
|
|
|
|
..'" added to '..name2..'\'s inventory.');
|
|
|
|
minetest.chat_send_player(name2, '"'..stackstring
|
|
|
|
..'" added to inventory.');
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(name, 'Could not give "'..stackstring
|
|
|
|
..'": '..error_msg);
|
|
|
|
end
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2011-11-17 09:21:17 -05:00
|
|
|
--
|
|
|
|
-- Done, print some random stuff
|
|
|
|
--
|
|
|
|
|
2011-11-29 10:44:07 -05:00
|
|
|
--print("minetest.registered_entities:")
|
|
|
|
--dump2(minetest.registered_entities)
|
2011-11-12 12:19:58 -05:00
|
|
|
|
2011-11-25 20:20:19 -05:00
|
|
|
-- END
|