VoxeLibre/mods/ENTITIES/mcl_dripping
the-real-herowl 4b83aaaa77 Renaming throughout docs and comments 2024-05-07 11:38:00 +00:00
..
sounds Rename drippingwater mod to mcl_dripping 2021-11-15 21:39:43 +01:00
README.md Renaming throughout docs and comments 2024-05-07 11:38:00 +00:00
init.lua Rename Liquid Textures (#3758) 2023-11-02 23:47:26 +00:00
mod.conf Rename drippingwater to mcl_dripping in mod.conf and readme.txt 2021-11-15 21:54:16 +01:00

README.md

mcl_dripping

Dripping Mod by kddekadenz, modified for VoxeLibre by Wuzzy, NO11 and AFCM

Manual

  • drops are generated rarely under solid nodes
  • they will stay some time at the generated block and than they fall down
  • when they collide with the ground, a sound is played and they are destroyed

Water and Lava have builtin drops registered.

License

code & sounds: CC0

API

mcl_dripping.register_drop({
	-- The group the liquid's nodes belong to
	liquid   = "water",
	-- The texture used (particles will take a random 2x2 area of it)
	texture  = "mcl_core_water_source_animation.png",
	-- Define particle glow, ranges from `0` to `minetest.LIGHT_MAX`
	light    = 1,
	-- The nodes (or node group) the particles will spawn under
	nodes    = { "group:opaque", "group:leaves" },
	-- The sound that will be played then the particle detaches from the roof, see SimpleSoundSpec in lua_api.txt
	sound    = "drippingwater_drip",
	-- The interval for the ABM to run
	interval = 60,
	-- The chance of the ABM
	chance   = 10,
})