2015-10-30 07:48:37 +01:00
|
|
|
-- Minetest: builtin/constants.lua
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Constants values for use with the Lua API
|
|
|
|
--
|
|
|
|
|
2016-07-23 13:29:53 +02:00
|
|
|
-- mapnode.h
|
2015-11-07 09:27:33 +01:00
|
|
|
-- Built-in Content IDs (for use with VoxelManip API)
|
|
|
|
core.CONTENT_UNKNOWN = 125
|
|
|
|
core.CONTENT_AIR = 126
|
|
|
|
core.CONTENT_IGNORE = 127
|
|
|
|
|
2016-07-23 13:29:53 +02:00
|
|
|
-- emerge.h
|
2015-10-30 07:48:37 +01:00
|
|
|
-- Block emerge status constants (for use with core.emerge_area)
|
|
|
|
core.EMERGE_CANCELLED = 0
|
|
|
|
core.EMERGE_ERRORED = 1
|
|
|
|
core.EMERGE_FROM_MEMORY = 2
|
|
|
|
core.EMERGE_FROM_DISK = 3
|
|
|
|
core.EMERGE_GENERATED = 4
|
2016-07-23 13:29:53 +02:00
|
|
|
|
|
|
|
-- constants.h
|
2016-09-15 23:40:19 +02:00
|
|
|
-- Size of mapblocks in nodes
|
2016-07-23 13:29:53 +02:00
|
|
|
core.MAP_BLOCKSIZE = 16
|
2017-08-23 22:32:10 +02:00
|
|
|
-- Default maximal HP of a player
|
|
|
|
core.PLAYER_MAX_HP_DEFAULT = 20
|
2017-09-15 12:18:47 +02:00
|
|
|
-- Default maximal breath of a player
|
2020-04-28 19:30:57 +02:00
|
|
|
core.PLAYER_MAX_BREATH_DEFAULT = 10
|
2016-09-15 23:40:19 +02:00
|
|
|
|
|
|
|
-- light.h
|
|
|
|
-- Maximum value for node 'light_source' parameter
|
|
|
|
core.LIGHT_MAX = 14
|