VoxeLibre/mods/ITEMS/mclx_core/init.lua

57 lines
2.2 KiB
Lua
Raw Normal View History

local S = minetest.get_translator(minetest.get_current_modname())
2017-11-30 14:16:04 +01:00
-- Liquids: River Water
local source = table.copy(minetest.registered_nodes["mcl_core:water_source"])
source.description = S("River Water Source")
2017-11-30 14:16:04 +01:00
source.liquid_range = 2
2022-08-12 15:11:17 +02:00
source.waving = 3
2017-11-30 14:16:04 +01:00
source.liquid_alternative_flowing = "mclx_core:river_water_flowing"
source.liquid_alternative_source = "mclx_core:river_water_source"
2017-11-30 15:01:33 +01:00
source.liquid_renewable = false
source._doc_items_longdesc = S("River water has the same properties as water, but has a reduced flowing distance and is not renewable.")
source._doc_items_entry_name = S("River Water")
2017-11-30 14:16:04 +01:00
-- Auto-expose entry only in valleys mapgen
source._doc_items_hidden = minetest.get_mapgen_setting("mg_name") ~= "valleys"
2017-12-06 01:01:58 +01:00
source.post_effect_color = {a=192, r=0x2c, g=0x88, b=0x8c}
2017-11-30 14:16:04 +01:00
source.tiles = {
{name="default_river_water_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=5.0}}
}
source.special_tiles = {
-- New-style water source material (mostly unused)
{
name="default_river_water_source_animated.png",
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=5.0},
backface_culling = false,
}
}
local flowing = table.copy(minetest.registered_nodes["mcl_core:water_flowing"])
flowing.description = S("Flowing River Water")
2017-11-30 14:16:04 +01:00
flowing.liquid_range = 2
2022-08-12 15:11:17 +02:00
flowing.waving = 3
2017-11-30 14:16:04 +01:00
flowing.liquid_alternative_flowing = "mclx_core:river_water_flowing"
flowing.liquid_alternative_source = "mclx_core:river_water_source"
2017-11-30 15:01:33 +01:00
flowing.liquid_renewable = false
2017-11-30 14:16:04 +01:00
flowing.tiles = {"default_river_water_flowing_animated.png^[verticalframe:64:0"}
2017-12-06 01:01:58 +01:00
flowing.post_effect_color = {a=192, r=0x2c, g=0x88, b=0x8c}
2017-11-30 14:16:04 +01:00
flowing.special_tiles = {
{
image="default_river_water_flowing_animated.png",
backface_culling=false,
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0}
},
{
image="default_river_water_flowing_animated.png",
2020-01-19 22:56:37 +01:00
backface_culling=false,
2017-11-30 14:16:04 +01:00
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0}
},
}
minetest.register_node("mclx_core:river_water_source", source)
minetest.register_node("mclx_core:river_water_flowing", flowing)
if minetest.get_modpath("doc") then
doc.add_entry_alias("nodes", "mclx_core:river_water_source", "nodes", "mclx_core:river_water_flowing")
end