2011-12-03 13:25:21 -05:00
|
|
|
-- default (Minetest 0.4 mod)
|
|
|
|
-- Most default stuff
|
|
|
|
|
|
|
|
-- Quick documentation about the API
|
|
|
|
-- =================================
|
|
|
|
--
|
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-03 13:25:21 -05:00
|
|
|
-- The legacy mod uses ":" for maintaining backwards compatibility.
|
2011-12-02 19:45:55 -05:00
|
|
|
--
|
|
|
|
-- Textures
|
|
|
|
-- --------
|
|
|
|
-- Mods should generally prefix their textures with modname_, eg. given
|
2011-12-03 14:10:02 -05:00
|
|
|
-- the mod name "foomod", a texture could be called "default_foomod_superfurnace.png"
|
2011-12-02 19:45:55 -05:00
|
|
|
--
|
|
|
|
-- 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}
|
|
|
|
--
|
2011-12-03 13:25:21 -05:00
|
|
|
-- param1 and param2 are 8 bit and 4 bit integers, respectively. They
|
|
|
|
-- are reserved for certain automated functions. If you don't use these
|
|
|
|
-- functions, you can use them to store arbitrary values.
|
|
|
|
--
|
|
|
|
-- param1 is reserved for the engine when:
|
|
|
|
-- paramtype != "none"
|
|
|
|
-- param2 is reserved for the engine when any of these are used:
|
|
|
|
-- liquidtype == "flowing"
|
|
|
|
-- drawtype == "flowingliquid"
|
|
|
|
-- drawtype == "torchlike"
|
|
|
|
-- drawtype == "signlike"
|
|
|
|
--
|
2011-12-01 16:33:48 -05:00
|
|
|
-- Position representation:
|
|
|
|
-- {x=num, y=num, z=num}
|
|
|
|
--
|
|
|
|
-- stackstring/itemstring: A stack of items in serialized format.
|
2012-01-01 14:31:47 -05:00
|
|
|
-- eg. 'node "default:dirt" 5'
|
2011-12-03 13:25:21 -05:00
|
|
|
-- eg. 'tool "default:pick_wood" 21323'
|
2012-01-01 14:31:47 -05:00
|
|
|
-- eg. 'craft "default:apple" 2'
|
2011-12-01 16:33:48 -05:00
|
|
|
--
|
2012-01-12 00:10:39 -05:00
|
|
|
-- item: A stack of items in Lua table format.
|
|
|
|
-- eg. {name="default:dirt", count=1, wear=0, metadata=""}
|
2011-12-01 16:33:48 -05:00
|
|
|
-- ^ a single dirt node
|
2012-01-12 00:10:39 -05:00
|
|
|
-- eg. {name="default:pick_wood", count=1, wear=21323, metadata=""}
|
2011-12-01 16:33:48 -05:00
|
|
|
-- ^ a wooden pick about 1/3 weared out
|
2012-01-12 00:10:39 -05:00
|
|
|
-- eg. {name="default:apple", count=1, wear=0, metadata=""}
|
2011-12-01 16:33:48 -05:00
|
|
|
-- ^ an apple.
|
|
|
|
--
|
2012-01-12 00:10:39 -05:00
|
|
|
-- Any time an item must be passed to a function, it can be an
|
|
|
|
-- ItemStack (see below), an itemstring or a table in the above format.
|
|
|
|
--
|
2011-11-12 12:19:58 -05:00
|
|
|
-- Global functions:
|
2011-12-01 16:33:48 -05:00
|
|
|
-- minetest.register_entity(name, prototype table)
|
2012-01-12 00:10:39 -05:00
|
|
|
-- minetest.register_abm(abm definition)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- minetest.register_node(name, node definition)
|
2012-01-12 00:10:39 -05:00
|
|
|
-- minetest.register_tool(name, item definition)
|
|
|
|
-- minetest.register_craftitem(name, item definition)
|
|
|
|
-- minetest.register_alias(name, convert_to)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- 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))
|
2012-01-05 17:12:33 -05:00
|
|
|
-- minetest.register_on_dieplayer(func(ObjectRef))
|
2011-11-25 20:20:19 -05:00
|
|
|
-- minetest.register_on_respawnplayer(func(ObjectRef))
|
|
|
|
-- ^ return true in func to disable regular player placement
|
2012-01-05 17:12:33 -05:00
|
|
|
-- ^ currently called _before_ repositioning of player occurs
|
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
|
2011-12-06 11:59:52 -05:00
|
|
|
-- minetest.get_inventory(location) -> InvRef
|
|
|
|
-- ^ location = eg. {type="player", name="celeron55"}
|
|
|
|
-- {type="node", pos={x=, y=, z=}}
|
2012-01-24 05:01:59 -05:00
|
|
|
-- minetest.get_current_modname() -> string
|
|
|
|
-- minetest.get_modpath(modname) -> eg. "/home/user/.minetest/usermods/modname"
|
2011-12-03 16:50:31 -05:00
|
|
|
--
|
2012-01-12 00:10:39 -05:00
|
|
|
-- minetest.debug(line)
|
|
|
|
-- ^ Goes to dstream
|
|
|
|
-- minetest.log(line)
|
|
|
|
-- minetest.log(loglevel, line)
|
|
|
|
-- ^ loglevel one of "error", "action", "info", "verbose"
|
2011-11-12 12:19:58 -05:00
|
|
|
--
|
2011-12-03 16:50:31 -05:00
|
|
|
-- minetest.digprop_constanttime(time)
|
|
|
|
-- minetest.digprop_stonelike(toughness)
|
|
|
|
-- minetest.digprop_dirtlike(toughness)
|
|
|
|
-- minetest.digprop_gravellike(toughness)
|
|
|
|
-- minetest.digprop_woodlike(toughness)
|
|
|
|
-- minetest.digprop_leaveslike(toughness)
|
|
|
|
-- minetest.digprop_glasslike(toughness)
|
|
|
|
--
|
2011-11-12 12:19:58 -05:00
|
|
|
-- Global objects:
|
|
|
|
-- minetest.env - environment reference
|
|
|
|
--
|
|
|
|
-- Global tables:
|
2012-01-12 00:10:39 -05:00
|
|
|
-- minetest.registered_items
|
|
|
|
-- ^ List of registered items, indexed by name
|
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
|
2012-01-12 00:10:39 -05:00
|
|
|
-- minetest.registered_tools
|
|
|
|
-- ^ List of registered tool 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-12-03 13:25:21 -05:00
|
|
|
-- ^ Returns {name="ignore", ...} for unloaded area
|
|
|
|
-- - get_node_or_nil(pos)
|
|
|
|
-- ^ Returns nil for unloaded area
|
2011-12-04 08:55:37 -05:00
|
|
|
-- - get_node_light(pos, timeofday) -> 0...15 or nil
|
|
|
|
-- ^ timeofday: nil = current time, 0 = night, 0.5 = day
|
2012-01-02 05:48:25 -05:00
|
|
|
-- - add_entity(pos, name): Returns ObjectRef or nil if failed
|
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-12-28 11:18:08 -05:00
|
|
|
-- - get_objects_inside_radius(pos, radius)
|
2012-01-24 05:01:59 -05:00
|
|
|
-- - set_timeofday(val): val: 0...1; 0 = midnight, 0.5 = midday
|
|
|
|
-- - get_timeofday()
|
2011-11-27 20:06:21 -05:00
|
|
|
--
|
2012-01-02 06:12:56 -05:00
|
|
|
-- NodeMetaRef (this stuff is subject to change in a future version)
|
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()
|
2012-01-20 18:11:44 -05:00
|
|
|
-- - set_owner(string)
|
2011-12-01 03:55:25 -05:00
|
|
|
-- Generic node metadata specific:
|
2011-11-28 10:11:14 -05:00
|
|
|
-- - set_infotext(infotext)
|
2011-12-06 12:02:42 -05:00
|
|
|
-- - get_inventory() -> InvRef
|
2011-11-28 10:11:14 -05:00
|
|
|
-- - 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-11-29 10:15:18 -05:00
|
|
|
-- - get_hp(): returns number of hitpoints (2 * number of hearts)
|
|
|
|
-- - set_hp(hp): set number of hitpoints (2 * number of hearts)
|
2012-01-12 00:10:39 -05:00
|
|
|
-- - get_inventory() -> InvRef
|
|
|
|
-- - get_wield_list(): returns the name of the inventory list the wielded item is in
|
|
|
|
-- - get_wield_index(): returns the index of the wielded item
|
|
|
|
-- - get_wielded_item() -> ItemStack
|
|
|
|
-- - set_wielded_item(item): replaces the wielded item, returns true if successful
|
2012-01-02 06:12:56 -05:00
|
|
|
-- LuaEntitySAO-only: (no-op for other objects)
|
2011-11-30 13:54:54 -05:00
|
|
|
-- - setvelocity({x=num, y=num, z=num})
|
2012-01-02 09:19:52 -05:00
|
|
|
-- - getvelocity() -> {x=num, y=num, z=num}
|
2011-11-30 13:54:54 -05:00
|
|
|
-- - setacceleration({x=num, y=num, z=num})
|
2011-12-01 16:33:48 -05:00
|
|
|
-- - getacceleration() -> {x=num, y=num, z=num}
|
2012-01-02 09:19:52 -05:00
|
|
|
-- - setyaw(radians)
|
|
|
|
-- - getyaw() -> radians
|
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)
|
2012-01-02 06:12:56 -05:00
|
|
|
-- - ^ Select sprite from spritesheet with optional animation and DM-style
|
|
|
|
-- - texture selection based on yaw relative to camera
|
2012-01-02 10:33:03 -05:00
|
|
|
-- - get_entity_name() (DEPRECATED: Will be removed in a future version)
|
2012-01-02 09:08:59 -05:00
|
|
|
-- - get_luaentity()
|
2012-01-02 06:12:56 -05:00
|
|
|
-- Player-only: (no-op for other objects)
|
2011-11-30 16:38:18 -05:00
|
|
|
-- - get_player_name(): will return nil if is not a player
|
2011-12-28 10:34:07 -05:00
|
|
|
-- - get_look_dir(): get camera direction as a unit vector
|
|
|
|
-- - get_look_pitch(): pitch in radians
|
|
|
|
-- - get_look_yaw(): yaw in radians (wraps around pretty randomly as of now)
|
2012-01-01 20:18:23 -05:00
|
|
|
--
|
|
|
|
-- InvRef methods:
|
2011-12-06 11:59:52 -05:00
|
|
|
-- - get_size(listname): get size of a list
|
|
|
|
-- - set_size(listname, size): set size of a list
|
|
|
|
-- - get_stack(listname, i): get a copy of stack index i in list
|
|
|
|
-- - set_stack(listname, i, stack): copy stack to index i in list
|
|
|
|
-- - get_list(listname): return full list
|
|
|
|
-- - set_list(listname, list): set full list (size will not change)
|
2012-01-12 00:10:39 -05:00
|
|
|
-- - add_item(listname, stack): add item somewhere in list, returns leftover ItemStack
|
|
|
|
-- - room_for_item(listname, stack): returns true if the stack of items
|
|
|
|
-- can be fully added to the list
|
|
|
|
-- - contains_item(listname, stack): returns true if the stack of items
|
|
|
|
-- can be fully taken from the list
|
|
|
|
-- remove_item(listname, stack): take as many items as specified from the list,
|
|
|
|
-- returns the items that were actually removed (as an ItemStack)
|
2011-12-06 11:59:52 -05:00
|
|
|
--
|
2012-01-01 20:18:23 -05:00
|
|
|
-- ItemStack methods:
|
2012-01-12 00:10:39 -05:00
|
|
|
-- - is_empty(): return true if stack is empty
|
|
|
|
-- - get_name(): returns item name (e.g. "default:stone")
|
|
|
|
-- - get_count(): returns number of items on the stack
|
|
|
|
-- - get_wear(): returns tool wear (0-65535), 0 for non-tools
|
|
|
|
-- - get_metadata(): returns metadata (a string attached to an item stack)
|
|
|
|
-- - clear(): removes all items from the stack, making it empty
|
|
|
|
-- - replace(item): replace the contents of this stack (item can also
|
|
|
|
-- be an itemstring or table)
|
|
|
|
-- - to_string(): returns the stack in itemstring form
|
|
|
|
-- - to_table(): returns the stack in Lua table form
|
|
|
|
-- - get_stack_max(): returns the maximum size of the stack (depends on the item)
|
|
|
|
-- - get_free_space(): returns get_stack_max() - get_count()
|
|
|
|
-- - is_known(): returns true if the item name refers to a defined item type
|
|
|
|
-- - get_definition(): returns the item definition table
|
|
|
|
-- - get_tool_digging_properties(): returns the digging properties of the item,
|
|
|
|
-- ^ or those of the hand if none are defined for this item type
|
|
|
|
-- - add_wear(amount): increases wear by amount if the item is a tool
|
|
|
|
-- - add_item(item): put some item or stack onto this stack,
|
|
|
|
-- ^ returns leftover ItemStack
|
|
|
|
-- - item_fits(item): returns true if item or stack can be fully added to this one
|
|
|
|
-- - take_item(n): take (and remove) up to n items from this stack
|
|
|
|
-- ^ returns taken ItemStack
|
|
|
|
-- ^ if n is omitted, n=1 is used
|
|
|
|
-- - peek_item(n): copy (don't remove) up to n items from this stack
|
|
|
|
-- ^ returns copied ItemStack
|
|
|
|
-- ^ if n is omitted, n=1 is used
|
2011-11-12 12:19:58 -05:00
|
|
|
--
|
|
|
|
-- Registered entities:
|
|
|
|
-- - Functions receive a "luaentity" as self:
|
2012-01-02 09:26:40 -05:00
|
|
|
-- - It has the member .name, which is the registered name ("mod:thing")
|
2011-11-12 12:19:58 -05:00
|
|
|
-- - 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},
|
2012-01-02 06:12:56 -05:00
|
|
|
-- visual = "cube"/"sprite",
|
|
|
|
-- visual_size = {x=1, y=1},
|
2011-12-01 16:33:48 -05:00
|
|
|
-- textures = {texture,texture,texture,texture,texture,texture},
|
2012-01-02 06:12:56 -05:00
|
|
|
-- spritediv = {x=1, y=1},
|
|
|
|
-- initial_sprite_basepos = {x=0, y=0},
|
2011-12-01 16:33:48 -05:00
|
|
|
-- 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
|
|
|
--
|
2012-01-20 18:11:44 -05:00
|
|
|
-- Item definition options (register_node, register_craftitem, register_tool)
|
2011-12-01 16:33:48 -05:00
|
|
|
-- {
|
2012-01-12 00:10:39 -05:00
|
|
|
-- description = "Steel Axe",
|
2012-02-03 19:20:05 -05:00
|
|
|
-- groups = {}, -- key=name, value=rating; rating=1..3.
|
|
|
|
-- if rating not applicable, use 1.
|
|
|
|
-- eg. {wool=1, fluffy=3}
|
|
|
|
-- {soil=2, outerspace=1, crumbly=1}
|
|
|
|
-- {hard=3, brittle=3, spikes=2
|
|
|
|
-- {hard=1, metal=1, spikes=1}
|
2012-01-12 00:10:39 -05:00
|
|
|
-- inventory_image = "default_tool_steelaxe.png",
|
|
|
|
-- wield_image = "",
|
|
|
|
-- wield_scale = {x=1,y=1,z=1},
|
|
|
|
-- stack_max = 99,
|
|
|
|
-- liquids_pointable = false,
|
|
|
|
-- tool_digging_properties = {
|
|
|
|
-- 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,
|
|
|
|
-- }
|
|
|
|
-- on_drop = func(item, dropper, pos),
|
|
|
|
-- on_place = func(item, placer, pointed_thing),
|
|
|
|
-- on_use = func(item, user, pointed_thing),
|
2011-12-01 16:33:48 -05:00
|
|
|
-- }
|
|
|
|
--
|
2012-01-20 18:11:44 -05:00
|
|
|
-- Node definition options (register_node):
|
2011-12-01 16:33:48 -05:00
|
|
|
-- {
|
2012-01-20 18:11:44 -05:00
|
|
|
-- <all fields allowed in item definitions>,
|
2011-12-01 16:33:48 -05:00
|
|
|
-- drawtype = "normal",
|
|
|
|
-- visual_scale = 1.0,
|
2011-12-03 14:10:02 -05:00
|
|
|
-- tile_images = {"default_unknown_block.png"},
|
2011-12-01 16:33:48 -05:00
|
|
|
-- 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",
|
2012-01-20 18:11:44 -05:00
|
|
|
-- paramtype2 = "none",
|
2011-12-01 16:33:48 -05:00
|
|
|
-- is_ground_content = false,
|
|
|
|
-- sunlight_propagates = false,
|
|
|
|
-- walkable = true,
|
|
|
|
-- pointable = true,
|
|
|
|
-- diggable = true,
|
|
|
|
-- climbable = false,
|
|
|
|
-- buildable_to = false,
|
2012-01-20 18:11:44 -05:00
|
|
|
-- drop = "",
|
|
|
|
-- -- alternatively drop = { max_items = ..., items = { ... } }
|
2011-12-01 16:33:48 -05:00
|
|
|
-- 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,
|
|
|
|
-- },
|
2012-01-20 18:11:44 -05:00
|
|
|
-- legacy_facedir_simple = false, -- Support maps made in and before January 2012
|
|
|
|
-- legacy_wallmounted = false, -- Support maps made in and before January 2012
|
2011-12-01 16:33:48 -05:00
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Recipe:
|
|
|
|
-- {
|
2012-01-12 00:10:39 -05:00
|
|
|
-- output = 'default:pick_stone',
|
2011-12-01 16:33:48 -05:00
|
|
|
-- recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
-- {'default:cobble', 'default:cobble', 'default:cobble'},
|
|
|
|
-- {'', 'default:stick', ''},
|
|
|
|
-- {'', 'default:stick', ''},
|
|
|
|
-- },
|
|
|
|
-- replacements = <optional list of item pairs,
|
|
|
|
-- replace one input item with another item on crafting>
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Recipe (shapeless):
|
|
|
|
-- {
|
|
|
|
-- type = "shapeless",
|
|
|
|
-- output = 'mushrooms:mushroom_stew',
|
|
|
|
-- recipe = {
|
|
|
|
-- "mushrooms:bowl",
|
|
|
|
-- "mushrooms:mushroom_brown",
|
|
|
|
-- "mushrooms:mushroom_red",
|
|
|
|
-- },
|
|
|
|
-- replacements = <optional list of item pairs,
|
|
|
|
-- replace one input item with another item on crafting>
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Recipe (tool repair):
|
|
|
|
-- {
|
|
|
|
-- type = "toolrepair",
|
|
|
|
-- additional_wear = -0.02,
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Recipe (cooking):
|
|
|
|
-- {
|
|
|
|
-- type = "cooking",
|
|
|
|
-- output = "default:glass",
|
|
|
|
-- recipe = "default:sand",
|
|
|
|
-- cooktime = 3,
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- Recipe (furnace fuel):
|
|
|
|
-- {
|
|
|
|
-- type = "fuel",
|
|
|
|
-- recipe = "default:leaves",
|
|
|
|
-- burntime = 1,
|
2011-12-01 16:33:48 -05:00
|
|
|
-- }
|
2011-11-17 09:21:17 -05:00
|
|
|
--
|
2011-12-03 11:18:59 -05:00
|
|
|
-- ABM (ActiveBlockModifier) definition:
|
|
|
|
-- {
|
2012-01-01 14:31:47 -05:00
|
|
|
-- nodenames = {"default:lava_source"},
|
|
|
|
-- neighbors = {"default:water_source", "default:water_flowing"}, -- (any of these)
|
2011-12-03 11:18:59 -05:00
|
|
|
-- ^ If left out or empty, any neighbor will do
|
|
|
|
-- ^ This might get removed in the future
|
|
|
|
-- interval = 1.0, -- (operation interval)
|
|
|
|
-- chance = 1, -- (chance of trigger is 1.0/this)
|
|
|
|
-- action = func(pos, node, active_object_count, active_object_count_wider),
|
|
|
|
-- }
|
2011-11-12 12:19:58 -05:00
|
|
|
|
2011-11-25 17:09:36 -05:00
|
|
|
WATER_ALPHA = 160
|
|
|
|
WATER_VISC = 1
|
|
|
|
LAVA_VISC = 7
|
|
|
|
LIGHT_MAX = 14
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
-- Definitions made by this mod that other mods can use too
|
|
|
|
default = {}
|
|
|
|
|
2011-11-25 09:34:12 -05:00
|
|
|
--
|
|
|
|
-- Tool definition
|
|
|
|
--
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:pick_wood", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Wooden Pickaxe",
|
|
|
|
inventory_image = "default_tool_woodpick.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 0,
|
|
|
|
dt_crackiness = -0.5,
|
|
|
|
dt_crumbliness = 2,
|
|
|
|
dt_cuttability = 0,
|
|
|
|
basedurability = 30,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
},
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:pick_stone", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Stone Pickaxe",
|
|
|
|
inventory_image = "default_tool_stonepick.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
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-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:pick_steel", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Steel Pickaxe",
|
|
|
|
inventory_image = "default_tool_steelpick.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 1.0,
|
|
|
|
dt_weight = 0,
|
|
|
|
dt_crackiness = -0.5,
|
|
|
|
dt_crumbliness = 2,
|
|
|
|
dt_cuttability = 0,
|
|
|
|
basedurability = 333,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
},
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:pick_mese", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Mese Pickaxe",
|
|
|
|
inventory_image = "default_tool_mesepick.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
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-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:shovel_wood", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Wooden Shovel",
|
|
|
|
inventory_image = "default_tool_woodshovel.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = 2,
|
|
|
|
dt_crumbliness = -1.5,
|
|
|
|
dt_cuttability = 0.3,
|
|
|
|
basedurability = 30,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
},
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:shovel_stone", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Stone Shovel",
|
|
|
|
inventory_image = "default_tool_stoneshovel.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
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-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:shovel_steel", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Steel Shovel",
|
|
|
|
inventory_image = "default_tool_steelshovel.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 1.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = 2,
|
|
|
|
dt_crumbliness = -1.5,
|
|
|
|
dt_cuttability = 0.0,
|
|
|
|
basedurability = 330,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
},
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:axe_wood", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Wooden Axe",
|
|
|
|
inventory_image = "default_tool_woodaxe.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 0.5,
|
|
|
|
dt_crackiness = -0.2,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -0.5,
|
|
|
|
basedurability = 30,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
},
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:axe_stone", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Stone Axe",
|
|
|
|
inventory_image = "default_tool_stoneaxe.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
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-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:axe_steel", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Steel Axe",
|
|
|
|
inventory_image = "default_tool_steelaxe.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
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,
|
|
|
|
},
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:sword_wood", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Wooden Sword",
|
|
|
|
inventory_image = "default_tool_woodsword.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 3.0,
|
|
|
|
dt_weight = 3,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -1,
|
|
|
|
basedurability = 30,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
}
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:sword_stone", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Stone Sword",
|
|
|
|
inventory_image = "default_tool_stonesword.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
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-11-14 19:03:28 -05:00
|
|
|
})
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_tool("default:sword_steel", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Steel Sword",
|
|
|
|
inventory_image = "default_tool_steelsword.png",
|
|
|
|
tool_digging_properties = {
|
|
|
|
basetime = 2.0,
|
|
|
|
dt_weight = 3,
|
|
|
|
dt_crackiness = 0,
|
|
|
|
dt_crumbliness = 1,
|
|
|
|
dt_cuttability = -1,
|
|
|
|
basedurability = 330,
|
|
|
|
dd_weight = 0,
|
|
|
|
dd_crackiness = 0,
|
|
|
|
dd_crumbliness = 0,
|
|
|
|
dd_cuttability = 0,
|
|
|
|
}
|
2011-11-14 19:03:28 -05:00
|
|
|
})
|
|
|
|
|
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({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:wood 4',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:tree'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:stick 4',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:fence_wood 2',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:stick', 'default:stick', 'default:stick'},
|
|
|
|
{'default:stick', 'default:stick', 'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:sign_wall',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'', 'default:stick', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:torch 4',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:coal_lump'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:pick_wood',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'', 'default:stick', ''},
|
|
|
|
{'', 'default:stick', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2011-11-16 19:28:46 -05:00
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:pick_stone',
|
2011-11-16 19:28:46 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:cobble', 'default:cobble', 'default:cobble'},
|
|
|
|
{'', 'default:stick', ''},
|
|
|
|
{'', 'default:stick', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:pick_steel',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
|
|
|
{'', 'default:stick', ''},
|
|
|
|
{'', 'default:stick', ''},
|
2011-11-16 19:28:46 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2011-11-17 03:16:02 -05:00
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:pick_mese',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:mese', 'default:mese', 'default:mese'},
|
|
|
|
{'', 'default:stick', ''},
|
|
|
|
{'', 'default:stick', ''},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:shovel_wood',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood'},
|
|
|
|
{'default:stick'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:shovel_stone',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:cobble'},
|
|
|
|
{'default:stick'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:shovel_steel',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'default:stick'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:axe_wood',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood', 'default:wood'},
|
|
|
|
{'default:wood', 'default:stick'},
|
|
|
|
{'', 'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:axe_stone',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:cobble', 'default:cobble'},
|
|
|
|
{'default:cobble', 'default:stick'},
|
|
|
|
{'', 'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:axe_steel',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:steel_ingot', 'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot', 'default:stick'},
|
|
|
|
{'', 'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:sword_wood',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood'},
|
|
|
|
{'default:wood'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:sword_stone',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:cobble'},
|
|
|
|
{'default:cobble'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:sword_steel',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot'},
|
|
|
|
{'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:rail 15',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:steel_ingot', '', 'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot', 'default:stick', 'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot', '', 'default:steel_ingot'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:chest',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'default:wood', '', 'default:wood'},
|
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:chest_locked',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'default:wood', 'default:steel_ingot', 'default:wood'},
|
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:furnace',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:cobble', 'default:cobble', 'default:cobble'},
|
|
|
|
{'default:cobble', '', 'default:cobble'},
|
|
|
|
{'default:cobble', 'default:cobble', 'default:cobble'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:steelblock',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:sandstone',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:sand', 'default:sand'},
|
|
|
|
{'default:sand', 'default:sand'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:clay',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:clay_lump', 'default:clay_lump'},
|
|
|
|
{'default:clay_lump', 'default:clay_lump'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:brick',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:clay_brick', 'default:clay_brick'},
|
|
|
|
{'default:clay_brick', 'default:clay_brick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:paper',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:papyrus', 'default:papyrus', 'default:papyrus'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:book',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:paper'},
|
|
|
|
{'default:paper'},
|
|
|
|
{'default:paper'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:bookshelf',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'default:book', 'default:book', 'default:book'},
|
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-12 00:10:39 -05:00
|
|
|
output = 'default:ladder',
|
2011-11-17 03:16:02 -05:00
|
|
|
recipe = {
|
2012-01-12 00:10:39 -05:00
|
|
|
{'default:stick', '', 'default:stick'},
|
|
|
|
{'default:stick', 'default:stick', 'default:stick'},
|
|
|
|
{'default:stick', '', 'default:stick'},
|
2011-11-17 03:16:02 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
--
|
|
|
|
-- Crafting (tool repair)
|
|
|
|
--
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "toolrepair",
|
|
|
|
additional_wear = -0.02,
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Cooking recipes
|
|
|
|
--
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:glass",
|
|
|
|
recipe = "default:sand",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:coal_lump",
|
|
|
|
recipe = "default:tree",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:coal_lump",
|
|
|
|
recipe = "default:jungletree",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:stone",
|
|
|
|
recipe = "default:cobble",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:steel_ingot",
|
|
|
|
recipe = "default:iron_lump",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:clay_brick",
|
|
|
|
recipe = "default:clay_lump",
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Fuels
|
|
|
|
--
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:tree",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:jungletree",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:junglegrass",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:leaves",
|
|
|
|
burntime = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:cactus",
|
|
|
|
burntime = 15,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:papyrus",
|
|
|
|
burntime = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:bookshelf",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_wood",
|
|
|
|
burntime = 15,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:ladder",
|
|
|
|
burntime = 5,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:wood",
|
|
|
|
burntime = 7,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:mese",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:lava_source",
|
|
|
|
burntime = 60,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:torch",
|
|
|
|
burntime = 4,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:sign_wall",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:chest",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:chest_locked",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:nyancat",
|
|
|
|
burntime = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:nyancat_rainbow",
|
|
|
|
burntime = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:sapling",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:apple",
|
|
|
|
burntime = 3,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:coal_lump",
|
|
|
|
burntime = 40,
|
|
|
|
})
|
|
|
|
|
2011-11-25 09:34:12 -05:00
|
|
|
--
|
|
|
|
-- Node definitions
|
|
|
|
--
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:stone", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Stone",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_stone.png"},
|
2011-11-25 11:57:47 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = 'default:cobble',
|
|
|
|
legacy_mineral = true,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:stone_with_coal", {
|
|
|
|
description = "Stone with coal",
|
|
|
|
tile_images = {"default_stone.png^default_mineral_coal.png"},
|
|
|
|
is_ground_content = true,
|
|
|
|
material = minetest.digprop_stonelike(1.0),
|
|
|
|
drop = 'default:coal_lump',
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:stone_with_iron", {
|
|
|
|
description = "Stone with iron",
|
|
|
|
tile_images = {"default_stone.png^default_mineral_iron.png"},
|
|
|
|
is_ground_content = true,
|
|
|
|
material = minetest.digprop_stonelike(1.0),
|
|
|
|
drop = 'default:iron_lump',
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:dirt_with_grass", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Dirt with grass",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
2011-11-25 11:57:47 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = 'default:dirt',
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:dirt_with_grass_footsteps", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Dirt with grass and footsteps",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_grass_footsteps.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
2011-11-25 11:57:47 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = 'default:dirt',
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:dirt", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Dirt",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_dirt.png"},
|
2011-11-25 11:57:47 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(1.0),
|
2011-11-25 11:57:47 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:sand", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Sand",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_sand.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(1.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:gravel", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Gravel",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_gravel.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_gravellike(1.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:sandstone", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Sandstone",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_sandstone.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(1.0), -- FIXME should this be stonelike?
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = 'default:sand',
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:clay", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Clay",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_clay.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = 'default:clay_lump 4',
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:brick", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Brick",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_brick.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = 'default:clay_brick 4',
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:tree", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Tree",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_tree_top.png", "default_tree_top.png", "default_tree.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(1.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:jungletree", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Jungle Tree",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_jungletree_top.png", "default_jungletree_top.png", "default_jungletree.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(1.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:junglegrass", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Jungle Grass",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.3,
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_junglegrass.png"},
|
|
|
|
inventory_image = "default_junglegrass.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_junglegrass.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_leaveslike(1.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:leaves", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Leaves",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "allfaces_optional",
|
|
|
|
visual_scale = 1.3,
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_leaves.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_leaveslike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{
|
|
|
|
-- player will get sapling with 1/20 chance
|
|
|
|
items = {'default:sapling'},
|
|
|
|
rarity = 20,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
-- player will get leaves only if he get no saplings,
|
|
|
|
-- this is because max_items is 1
|
|
|
|
items = {'default:leaves'},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:cactus", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Cactus",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(0.75),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:papyrus", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Papyrus",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_papyrus.png"},
|
|
|
|
inventory_image = "default_papyrus.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_papyrus.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
walkable = false,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_leaveslike(0.5),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:bookshelf", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Bookshelf",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_wood.png", "default_wood.png", "default_bookshelf.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(0.75),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:glass", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Glass",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "glasslike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_glass.png"},
|
|
|
|
inventory_image = minetest.inventorycube("default_glass.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_glasslike(1.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 19:12:43 -05:00
|
|
|
minetest.register_node("default:fence_wood", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Wooden Fence",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "fencelike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_wood.png"},
|
|
|
|
inventory_image = "default_fence.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_fence.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
|
|
|
|
},
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(0.75),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:rail", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Rail",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "raillike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"},
|
|
|
|
inventory_image = "default_rail.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_rail.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
--fixed = <default>
|
|
|
|
},
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_dirtlike(0.75),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:ladder", {
|
2012-01-13 06:35:55 -05:00
|
|
|
description = "Ladder",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "signlike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_ladder.png"},
|
|
|
|
inventory_image = "default_ladder.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_ladder.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "wallmounted",
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
walkable = false,
|
|
|
|
climbable = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
--wall_top = = <default>
|
|
|
|
--wall_bottom = = <default>
|
|
|
|
--wall_side = = <default>
|
|
|
|
},
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(0.5),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_wallmounted = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:wood", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Wood",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_wood.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(0.75),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:mese", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Mese",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_mese.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(0.5),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:cloud", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Cloud",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_cloud.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:water_flowing", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Water (flowing)",
|
|
|
|
inventory_image = minetest.inventorycube("default_water.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "flowingliquid",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_water.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
alpha = WATER_ALPHA,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "flowing",
|
2012-01-01 14:31:47 -05:00
|
|
|
liquid_alternative_flowing = "default:water_flowing",
|
|
|
|
liquid_alternative_source = "default:water_source",
|
2011-11-25 17:09:36 -05:00
|
|
|
liquid_viscosity = WATER_VISC,
|
|
|
|
post_effect_color = {a=64, r=100, g=100, b=200},
|
|
|
|
special_materials = {
|
2011-12-03 14:10:02 -05:00
|
|
|
{image="default_water.png", backface_culling=false},
|
|
|
|
{image="default_water.png", backface_culling=true},
|
2011-11-25 17:09:36 -05:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:water_source", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Water",
|
|
|
|
inventory_image = minetest.inventorycube("default_water.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "liquid",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_water.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
alpha = WATER_ALPHA,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "source",
|
2012-01-01 14:31:47 -05:00
|
|
|
liquid_alternative_flowing = "default:water_flowing",
|
|
|
|
liquid_alternative_source = "default:water_source",
|
2011-11-25 17:09:36 -05:00
|
|
|
liquid_viscosity = WATER_VISC,
|
|
|
|
post_effect_color = {a=64, r=100, g=100, b=200},
|
|
|
|
special_materials = {
|
|
|
|
-- New-style water source material (mostly unused)
|
2011-12-03 14:10:02 -05:00
|
|
|
{image="default_water.png", backface_culling=false},
|
2011-11-25 17:09:36 -05:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:lava_flowing", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Lava (flowing)",
|
|
|
|
inventory_image = minetest.inventorycube("default_lava.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "flowingliquid",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_lava.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
light_source = LIGHT_MAX - 1,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "flowing",
|
2012-01-01 14:31:47 -05:00
|
|
|
liquid_alternative_flowing = "default:lava_flowing",
|
|
|
|
liquid_alternative_source = "default:lava_source",
|
2011-11-25 17:09:36 -05:00
|
|
|
liquid_viscosity = LAVA_VISC,
|
|
|
|
damage_per_second = 4*2,
|
|
|
|
post_effect_color = {a=192, r=255, g=64, b=0},
|
|
|
|
special_materials = {
|
2011-12-03 14:10:02 -05:00
|
|
|
{image="default_lava.png", backface_culling=false},
|
|
|
|
{image="default_lava.png", backface_culling=true},
|
2011-11-25 17:09:36 -05:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:lava_source", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Lava",
|
|
|
|
inventory_image = minetest.inventorycube("default_lava.png"),
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "liquid",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_lava.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
light_source = LIGHT_MAX - 1,
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
liquidtype = "source",
|
2012-01-01 14:31:47 -05:00
|
|
|
liquid_alternative_flowing = "default:lava_flowing",
|
|
|
|
liquid_alternative_source = "default:lava_source",
|
2011-11-25 17:09:36 -05:00
|
|
|
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)
|
2011-12-03 14:10:02 -05:00
|
|
|
{image="default_lava.png", backface_culling=false},
|
2011-11-25 17:09:36 -05:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:torch", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Torch",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "torchlike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_torch_on_floor.png", "default_torch_on_ceiling.png", "default_torch.png"},
|
|
|
|
inventory_image = "default_torch_on_floor.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_torch_on_floor.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "wallmounted",
|
2011-11-25 17:09:36 -05:00
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
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},
|
|
|
|
},
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_constanttime(0.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_wallmounted = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:sign_wall", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Sign",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "signlike",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_sign_wall.png"},
|
|
|
|
inventory_image = "default_sign_wall.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_sign_wall.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "wallmounted",
|
2011-11-25 17:09:36 -05:00
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
metadata_name = "sign",
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
--wall_top = <default>
|
|
|
|
--wall_bottom = <default>
|
|
|
|
--wall_side = <default>
|
|
|
|
},
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_constanttime(0.5),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_wallmounted = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:chest", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Chest",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
|
|
|
"default_chest_side.png", "default_chest_side.png", "default_chest_front.png"},
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "facedir",
|
2011-12-03 14:10:02 -05:00
|
|
|
metadata_name = "chest",
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_facedir_simple = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:chest_locked", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Locked Chest",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
|
|
|
"default_chest_side.png", "default_chest_side.png", "default_chest_lock.png"},
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "facedir",
|
2011-12-03 14:10:02 -05:00
|
|
|
metadata_name = "locked_chest",
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_woodlike(1.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_facedir_simple = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:furnace", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Furnace",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_furnace_side.png", "default_furnace_side.png", "default_furnace_side.png",
|
|
|
|
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front.png"},
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "facedir",
|
2011-12-03 14:10:02 -05:00
|
|
|
metadata_name = "furnace",
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(3.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_facedir_simple = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:cobble", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Cobble",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_cobble.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(0.9),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:mossycobble", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Mossy Cobble",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_mossycobble.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(0.8),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:steelblock", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Steel Block",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_steel_block.png"},
|
2011-11-25 17:09:36 -05:00
|
|
|
is_ground_content = true,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(5.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:nyancat", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Nyancat",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_nc_side.png", "default_nc_side.png", "default_nc_side.png",
|
|
|
|
"default_nc_side.png", "default_nc_back.png", "default_nc_front.png"},
|
|
|
|
inventory_image = "default_nc_front.png",
|
2012-01-20 18:11:44 -05:00
|
|
|
paramtype2 = "facedir",
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(3.0),
|
2012-01-20 18:11:44 -05:00
|
|
|
legacy_facedir_simple = true,
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:nyancat_rainbow", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Nyancat Rainbow",
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_nc_rb.png"},
|
|
|
|
inventory_image = "default_nc_rb.png",
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_stonelike(3.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:sapling", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Sapling",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.0,
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_sapling.png"},
|
|
|
|
inventory_image = "default_sapling.png",
|
2012-01-12 00:10:39 -05:00
|
|
|
wield_image = "default_sapling.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_constanttime(0.0),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_node("default:apple", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Apple",
|
2011-11-25 17:09:36 -05:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.0,
|
2011-12-03 14:10:02 -05:00
|
|
|
tile_images = {"default_apple.png"},
|
|
|
|
inventory_image = "default_apple.png",
|
2011-11-25 17:09:36 -05:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
2011-12-03 13:25:21 -05:00
|
|
|
material = minetest.digprop_constanttime(0.0),
|
2012-01-12 00:10:39 -05:00
|
|
|
on_use = minetest.item_eat(4),
|
2011-11-25 17:09:36 -05:00
|
|
|
})
|
|
|
|
|
2011-11-29 10:15:18 -05:00
|
|
|
--
|
|
|
|
-- Crafting items
|
|
|
|
--
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_craftitem("default:stick", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Stick",
|
|
|
|
inventory_image = "default_stick.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_craftitem("default:paper", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Paper",
|
|
|
|
inventory_image = "default_paper.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_craftitem("default:book", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Book",
|
|
|
|
inventory_image = "default_book.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 15:31:12 -05:00
|
|
|
minetest.register_craftitem("default:coal_lump", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Lump of coal",
|
|
|
|
inventory_image = "default_coal_lump.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 15:31:12 -05:00
|
|
|
minetest.register_craftitem("default:iron_lump", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Lump of iron",
|
|
|
|
inventory_image = "default_iron_lump.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 15:31:12 -05:00
|
|
|
minetest.register_craftitem("default:clay_lump", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Lump of clay",
|
|
|
|
inventory_image = "default_clay_lump.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_craftitem("default:steel_ingot", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Steel ingot",
|
|
|
|
inventory_image = "default_steel_ingot.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_craftitem("default:clay_brick", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Clay brick",
|
|
|
|
inventory_image = "default_steel_ingot.png",
|
|
|
|
inventory_image = "default_clay_brick.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
minetest.register_craftitem("default:scorched_stuff", {
|
2012-01-12 00:10:39 -05:00
|
|
|
description = "Scorched stuff",
|
|
|
|
inventory_image = "default_scorched_stuff.png",
|
2011-11-29 10:15:18 -05:00
|
|
|
})
|
|
|
|
|
2011-12-02 05:43:57 -05:00
|
|
|
--
|
|
|
|
-- Creative inventory
|
|
|
|
--
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
minetest.add_to_creative_inventory('default:pick_mese')
|
|
|
|
minetest.add_to_creative_inventory('default:pick_steel')
|
|
|
|
minetest.add_to_creative_inventory('default:axe_steel')
|
|
|
|
minetest.add_to_creative_inventory('default:shovel_steel')
|
|
|
|
|
|
|
|
minetest.add_to_creative_inventory('default:torch')
|
|
|
|
minetest.add_to_creative_inventory('default:cobble')
|
|
|
|
minetest.add_to_creative_inventory('default:dirt')
|
|
|
|
minetest.add_to_creative_inventory('default:stone')
|
|
|
|
minetest.add_to_creative_inventory('default:sand')
|
|
|
|
minetest.add_to_creative_inventory('default:sandstone')
|
|
|
|
minetest.add_to_creative_inventory('default:clay')
|
|
|
|
minetest.add_to_creative_inventory('default:brick')
|
|
|
|
minetest.add_to_creative_inventory('default:tree')
|
|
|
|
minetest.add_to_creative_inventory('default:wood')
|
|
|
|
minetest.add_to_creative_inventory('default:leaves')
|
|
|
|
minetest.add_to_creative_inventory('default:cactus')
|
|
|
|
minetest.add_to_creative_inventory('default:papyrus')
|
|
|
|
minetest.add_to_creative_inventory('default:bookshelf')
|
|
|
|
minetest.add_to_creative_inventory('default:glass')
|
|
|
|
minetest.add_to_creative_inventory('default:fence')
|
|
|
|
minetest.add_to_creative_inventory('default:rail')
|
|
|
|
minetest.add_to_creative_inventory('default:mese')
|
|
|
|
minetest.add_to_creative_inventory('default:chest')
|
|
|
|
minetest.add_to_creative_inventory('default:furnace')
|
|
|
|
minetest.add_to_creative_inventory('default:sign_wall')
|
|
|
|
minetest.add_to_creative_inventory('default:water_source')
|
|
|
|
minetest.add_to_creative_inventory('default:lava_source')
|
|
|
|
minetest.add_to_creative_inventory('default:ladder')
|
2011-11-29 10:15:18 -05:00
|
|
|
|
2011-11-17 09:21:17 -05:00
|
|
|
--
|
|
|
|
-- Some common functions
|
|
|
|
--
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
default.falling_node_names = {}
|
|
|
|
|
2011-11-17 09:21:17 -05:00
|
|
|
function nodeupdate_single(p)
|
|
|
|
n = minetest.env:get_node(p)
|
2011-12-03 13:25:21 -05:00
|
|
|
if default.falling_node_names[n.name] ~= nil then
|
2011-11-17 09:21:17 -05:00
|
|
|
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-04 09:08:37 -05:00
|
|
|
minetest.env:add_entity(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
|
|
|
|
--
|
|
|
|
|
2011-12-03 13:25:21 -05:00
|
|
|
function default.register_falling_node(nodename, texture)
|
|
|
|
default.falling_node_names[nodename] = true
|
|
|
|
-- Override naming conventions for stuff like :default:falling_default:sand
|
|
|
|
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
|
|
|
|
|
2011-12-03 14:10:02 -05:00
|
|
|
default.register_falling_node("default:sand", "default_sand.png")
|
|
|
|
default.register_falling_node("default:gravel", "default_gravel.png")
|
2011-11-17 09:21:17 -05:00
|
|
|
|
|
|
|
--
|
|
|
|
-- 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)
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
local function handle_give_command(cmd, giver, receiver, stackstring)
|
|
|
|
if not minetest.get_player_privs(giver)["give"] then
|
|
|
|
minetest.chat_send_player(giver, "error: you don't have permission to give")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
minetest.debug("DEBUG: "..cmd..' invoked, stackstring="'..stackstring..'"')
|
|
|
|
minetest.log(cmd..' invoked, stackstring="'..stackstring..'"')
|
|
|
|
local itemstack = ItemStack(stackstring)
|
|
|
|
if itemstack:is_empty() then
|
|
|
|
minetest.chat_send_player(giver, 'error: cannot give an empty item')
|
|
|
|
return
|
|
|
|
elseif not itemstack:is_known() then
|
|
|
|
minetest.chat_send_player(giver, 'error: cannot give an unknown item')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local receiverref = minetest.env:get_player_by_name(receiver)
|
|
|
|
if receiverref == nil then
|
|
|
|
minetest.chat_send_player(giver, receiver..' is not a known player')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local leftover = receiverref:get_inventory():add_item("main", itemstack)
|
|
|
|
if leftover:is_empty() then
|
|
|
|
partiality = ""
|
|
|
|
elseif leftover:get_count() == itemstack:get_count() then
|
|
|
|
partiality = "could not be "
|
|
|
|
else
|
|
|
|
partiality = "partially "
|
|
|
|
end
|
|
|
|
if giver == receiver then
|
|
|
|
minetest.chat_send_player(giver, '"'..stackstring
|
|
|
|
..'" '..partiality..'added to inventory.');
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(giver, '"'..stackstring
|
|
|
|
..'" '..partiality..'added to '..receiver..'\'s inventory.');
|
|
|
|
minetest.chat_send_player(receiver, '"'..stackstring
|
|
|
|
..'" '..partiality..'added to inventory.');
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
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
|
2012-01-12 00:10:39 -05:00
|
|
|
handle_give_command(cmd, name, name, stackstring)
|
|
|
|
return true
|
2011-11-29 14:30:22 -05:00
|
|
|
end
|
|
|
|
local cmd = "/give"
|
|
|
|
if message:sub(0, #cmd) == cmd then
|
2012-01-12 00:10:39 -05:00
|
|
|
local receiver, stackstring = string.match(message, cmd.." ([%a%d_-]+) (.*)")
|
|
|
|
if receiver == nil or stackstring == nil then
|
2011-11-29 14:30:22 -05:00
|
|
|
minetest.chat_send_player(name, 'usage: '..cmd..' name stackstring')
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2012-01-12 00:10:39 -05:00
|
|
|
handle_give_command(cmd, name, receiver, stackstring)
|
|
|
|
return true
|
2011-11-29 14:30:22 -05:00
|
|
|
end
|
2011-12-03 21:28:30 -05:00
|
|
|
local cmd = "/spawnentity"
|
|
|
|
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 spawn (give)")
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2012-01-12 00:10:39 -05:00
|
|
|
if not minetest.get_player_privs(name)["interact"] then
|
|
|
|
minetest.chat_send_player(name, "you don't have permission to interact")
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2011-12-03 21:28:30 -05:00
|
|
|
local entityname = string.match(message, cmd.." (.*)")
|
|
|
|
if entityname == nil then
|
|
|
|
minetest.chat_send_player(name, 'usage: '..cmd..' entityname')
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
print(cmd..' invoked, entityname="'..entityname..'"')
|
|
|
|
local player = minetest.env:get_player_by_name(name)
|
|
|
|
if player == nil then
|
|
|
|
print("Unable to spawn entity, player is nil")
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2011-12-04 09:20:54 -05:00
|
|
|
local p = player:getpos()
|
|
|
|
p.y = p.y + 1
|
|
|
|
minetest.env:add_entity(p, entityname)
|
2011-12-03 21:28:30 -05:00
|
|
|
minetest.chat_send_player(name, '"'..entityname
|
|
|
|
..'" spawned.');
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
2012-01-12 00:10:39 -05:00
|
|
|
local cmd = "/pulverize"
|
|
|
|
if message:sub(0, #cmd) == cmd then
|
|
|
|
local player = minetest.env:get_player_by_name(name)
|
|
|
|
if player == nil then
|
|
|
|
print("Unable to pulverize, player is nil")
|
|
|
|
return true -- Handled chat message
|
|
|
|
end
|
|
|
|
if player:get_wielded_item():is_empty() then
|
|
|
|
minetest.chat_send_player(name, 'Unable to pulverize, no item in hand.')
|
|
|
|
else
|
|
|
|
player:set_wielded_item(nil)
|
|
|
|
minetest.chat_send_player(name, 'An item was pulverized.')
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
2011-11-29 14:30:22 -05:00
|
|
|
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
|