VoxeLibre/mods/ITEMS/mcl_potions/splash.lua

280 lines
11 KiB
Lua
Raw Normal View History

2020-06-27 14:15:53 +02:00
local splash_image = function(colorstring, opacity)
2020-06-13 01:54:45 +02:00
if not opacity then
opacity = 127
end
return "mcl_potions_splash_overlay.png^[colorize:"..colorstring..":"..tostring(opacity).."^mcl_potions_splash_bottle.png"
end
2020-06-27 01:08:41 +02:00
2020-06-13 01:54:45 +02:00
local function register_splash(name, descr, color, def)
local id = "mcl_potions:"..name.."_splash"
minetest.register_craftitem(id, {
description = descr,
2020-07-06 00:15:52 +02:00
_tt_help = def.tt,
2020-06-13 01:54:45 +02:00
inventory_image = splash_image(color),
groups = {brewitem=1, not_in_creative_inventory=0},
on_use = function(item, placer, pointed_thing)
2020-06-13 01:54:45 +02:00
local velocity = 10
local dir = placer:get_look_dir();
local pos = placer:get_pos();
local obj = minetest.add_entity({x=pos.x+dir.x,y=pos.y+2+dir.y,z=pos.z+dir.z}, id.."_flying")
obj:set_velocity({x=dir.x*velocity,y=dir.y*velocity,z=dir.z*velocity})
obj:set_acceleration({x=0, y=-9.8, z=0})
2020-06-27 01:08:41 +02:00
if not minetest.settings:get_bool("creative_mode") then
item:take_item()
end
return item
2020-06-13 01:54:45 +02:00
end,
stack_max = 1,
2020-06-13 01:54:45 +02:00
})
local w = 0.7
2020-06-13 01:54:45 +02:00
minetest.register_entity(id.."_flying",{
textures = {splash_image(color)},
hp_max = 1,
visual_size = {x=w/2,y=w/2},
collisionbox = {0,0,0,0,0,0},
2020-06-13 01:54:45 +02:00
on_step = function(self, dtime)
local pos = self.object:getpos()
local node = minetest.get_node(pos)
local n = node.name
local d = 2
2020-06-13 23:50:33 +02:00
local redux_map = {7/8,0.5,0.25}
2020-07-05 14:16:11 +02:00
if n ~= "air" and n ~= "mcl_portals:portal" and n ~= "mcl_portals:portal_end" or mcl_potions.is_obj_hit(self, pos) then
minetest.sound_play("mcl_potions_breaking_glass", {pos = pos, max_hear_distance = 16, gain = 1})
2020-06-13 01:54:45 +02:00
minetest.add_particlespawner({
amount = 50,
2020-06-13 01:54:45 +02:00
time = 2,
minpos = {x=pos.x-d, y=pos.y+0.5, z=pos.z-d},
maxpos = {x=pos.x+d, y=pos.y+d, z=pos.z+d},
2020-06-13 01:54:45 +02:00
minvel = {x=-1, y=0, z=-1},
maxvel = {x=1, y=0.5, z=1},
minacc = {x=-0.5, y=0, z=-0.5},
maxacc = {x=0.5, y=.2, z=0.5},
minexptime = 1,
2020-06-20 15:00:53 +02:00
maxexptime = 3,
2020-06-13 01:54:45 +02:00
minsize = 2,
maxsize = 4,
collisiondetection = true,
2020-06-13 01:54:45 +02:00
vertical = false,
texture = "mcl_potions_sprite.png^[colorize:"..color..":127",
})
2020-06-27 02:32:03 +02:00
self.object:remove()
2020-06-27 03:27:17 +02:00
for _,obj in pairs(minetest.get_objects_inside_radius(pos, 4)) do
2020-06-27 03:31:23 +02:00
local entity = obj:get_luaentity()
2020-06-27 03:27:17 +02:00
if obj:is_player() or entity._cmi_is_mob then
2020-06-13 23:50:33 +02:00
local pos2 = obj:get_pos()
2020-06-13 23:50:33 +02:00
local rad = math.floor(math.sqrt((pos2.x-pos.x)^2 + (pos2.y-pos.y)^2 + (pos2.z-pos.z)^2))
if rad > 0 then def.potion_fun(obj, redux_map[rad]) else def.potion_fun(obj, 1) end
end
2020-06-13 01:54:45 +02:00
end
2020-06-13 01:54:45 +02:00
end
end,
})
end
2020-07-06 00:15:52 +02:00
local function time_string(dur)
return math.floor(dur/60)..string.format(":%02d",math.floor(dur % 60))
end
2020-06-27 14:15:01 +02:00
local splash_DUR = mcl_potions.DURATION*mcl_potions.SPLASH_FACTOR
local splash_DUR_2 = mcl_potions.DURATION_2*mcl_potions.SPLASH_FACTOR
local splash_DUR_pl = mcl_potions.DURATION_PLUS*mcl_potions.SPLASH_FACTOR
2020-07-10 12:50:08 +02:00
register_splash("water", "Splash Water Bottle", "#0000FF", {
potion_fun = function(player, redx) end,
2020-07-06 00:15:52 +02:00
tt = "No effect"
})
2020-07-10 12:50:08 +02:00
register_splash("river_water", "Splash River Water Bottle", "#0000FF", {
potion_fun = function(player, redx) end,
2020-07-06 00:15:52 +02:00
tt = "No effect"
})
2020-07-10 12:50:08 +02:00
register_splash("awkward", "Awkward Splash Potion", "#0000FF", {
potion_fun = function(player, redx) end,
2020-07-06 00:15:52 +02:00
tt = "No effect"
})
2020-07-10 12:50:08 +02:00
register_splash("mundane", "Mundane Splash Potion", "#0000FF", {
potion_fun = function(player, redx) end,
2020-07-06 00:15:52 +02:00
tt = "No effect"
})
2020-07-10 12:50:08 +02:00
register_splash("thick", "Thick Splash Potion", "#0000FF", {
potion_fun = function(player, redx) end,
2020-07-06 00:15:52 +02:00
tt = "No effect"
})
2020-07-10 12:50:08 +02:00
register_splash("healing", "Healing Splash Potion", "#AA0000", {
potion_fun = function(player, redx) mcl_potions.healing_func(player, 3*redx) end,
2020-07-10 12:50:08 +02:00
tt = "+3 HP"
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("healing_2", "Healing Splash Potion II", "#DD0000", {
potion_fun = function(player, redx) mcl_potions.healing_func(player, 6*redx) end,
2020-07-10 12:50:08 +02:00
tt = "+6 HP"
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("harming", "Harming Splash Potion", "#660099", {
potion_fun = function(player, redx) mcl_potions.healing_func(player, -6*redx) end,
2020-07-10 12:50:08 +02:00
tt = "-4 HP"
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("harming_2", "Harming Splash Potion II", "#330066", {
potion_fun = function(player, redx) mcl_potions.healing_func(player, -12*redx) end,
2020-07-10 12:50:08 +02:00
tt = "-6 HP"
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("leaping", "Leaping Splash Potion", "#00CC33", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.leaping_func(player, 1.2, splash_DUR*redx) end,
tt = "120% | "..time_string(splash_DUR)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("leaping_2", "Leaping Splash Potion II", "#00EE33", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.leaping_func(player, 1.4, splash_DUR_2*redx) end,
tt = "140% | "..time_string(splash_DUR_2)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("leaping_plus", "Leaping Splash Potion +", "#00DD33", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.leaping_func(player, 1.2, splash_DUR_pl*redx) end,
tt = "120% | "..time_string(splash_DUR_pl)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("swiftness", "Swiftness Splash Potion", "#009999", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.swiftness_func(player, 1.2, splash_DUR*redx) end,
tt = "120% | "..time_string(splash_DUR)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("swiftness_2", "Swiftness Splash Potion II", "#00BBBB", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.swiftness_func(player, 1.4, splash_DUR_2*redx) end,
tt = "140% | "..time_string(splash_DUR_2)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("swiftness_plus", "Swiftness Splash Potion +", "#00BBBB", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.swiftness_func(player, 1.2, splash_DUR_pl*redx) end,
tt = "120% | "..time_string(splash_DUR_2)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("slowness", "Slowness Splash Potion", "#000080", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.swiftness_func(player, 0.85, splash_DUR*mcl_potions.INV_FACTOR*redx) end,
tt = "85% | "..time_string(splash_DUR*mcl_potions.INV_FACTOR)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("slowness_2", "Slowness Splash Potion IV", "#000080", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.swiftness_func(player, 0.4, 20*mcl_potions.INV_FACTOR*redx) end,
tt = "40% | "..time_string(20*mcl_potions.INV_FACTOR)
2020-06-27 13:57:51 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("slowness_plus", "Slowness Splash Potion +", "#000066", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.swiftness_func(player, 0.85, splash_DUR_pl*mcl_potions.INV_FACTOR*redx) end,
tt = "85% | "..time_string(splash_DUR_pl*mcl_potions.INV_FACTOR)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("poison", "Poison Splash Potion", "#335544", {
2020-07-07 02:52:24 +02:00
potion_fun = function(player, redx) mcl_potions.poison_func(player, 2.5, splash_DUR*mcl_potions.INV_FACTOR^2*redx) end,
2020-07-10 12:50:08 +02:00
tt = "-1 HP / 2.5s | "..time_string(splash_DUR*mcl_potions.INV_FACTOR^2)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("poison_2", "Poison Splash Potion II", "#446655", {
2020-07-07 02:52:24 +02:00
potion_fun = function(player, redx) mcl_potions.poison_func(player, 1.2, splash_DUR_2*mcl_potions.INV_FACTOR^2*redx) end,
2020-07-10 12:50:08 +02:00
tt = "-1 HP / 1.2s | "..time_string(splash_DUR_2*mcl_potions.INV_FACTOR^2)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("poison_plus", "Poison Splash Potion +", "#557766", {
2020-07-07 02:52:24 +02:00
potion_fun = function(player, redx) mcl_potions.poison_func(player, 2.5, splash_DUR*mcl_potions.INV_FACTOR*redx) end,
2020-07-10 12:50:08 +02:00
tt = "-1 HP / 2.5s | "..time_string(splash_DUR_pl*mcl_potions.INV_FACTOR^2)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("regeneration", "Regeneration Splash Potion", "#A52BB2", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.regeneration_func(player, 2.5, splash_DUR*redx) end,
2020-07-10 12:50:08 +02:00
tt = "+1 HP / 2.5s | "..time_string(splash_DUR)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("regeneration_2", "Regeneration Splash Potion II", "#B52CC2", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.regeneration_func(player, 1.2, (splash_DUR_2 + 1)*redx) end,
2020-07-10 12:50:08 +02:00
tt = "+1 HP / 1.2s | "..time_string(splash_DUR_2 + 1)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("regeneration_plus", "Regeneration Splash Potion +", "#C53DD3", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.regeneration_func(player, 2.5, splash_DUR_pl*redx) end,
2020-07-10 12:50:08 +02:00
tt = "+1 HP / 2.5s | "..time_string(splash_DUR_pl)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("invisibility", "Invisibility Splash Potion", "#B0B0B0", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.invisiblility_func(player, splash_DUR*redx) end,
tt = time_string(splash_DUR)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("invisibility_plus", "Invisibility Splash Potion +", "#A0A0A0", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.invisiblility_func(player, splash_DUR_pl*redx) end,
tt = time_string(splash_DUR_pl)
2020-06-13 01:54:45 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("weakness", "Weakness Splash Potion", "#6600AA", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.weakness_func(player, -4, splash_DUR*mcl_potions.INV_FACTOR*redx) end,
2020-07-10 12:50:08 +02:00
-- TODO: Fix tooltip
tt = time_string(splash_DUR*mcl_potions.INV_FACTOR)
})
2020-07-10 12:50:08 +02:00
register_splash("weakness_plus", "Weakness Splash Potion +", "#7700BB", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.weakness_func(player, -4, splash_DUR_pl*mcl_potions.INV_FACTOR*redx) end,
2020-07-10 12:50:08 +02:00
-- TODO: Fix tooltip
tt = time_string(splash_DUR_pl*mcl_potions.INV_FACTOR)
})
2020-06-18 23:59:36 +02:00
2020-07-10 12:50:08 +02:00
register_splash("strength", "Strength Splash Potion", "#D444D4", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.strength_func(player, 3, splash_DUR*redx) end,
2020-07-10 12:50:08 +02:00
-- TODO: Fix tooltip
tt = time_string(splash_DUR)
2020-06-29 02:31:08 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("strength_2", "Strength Splash Potion II", "#D444F4", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.strength_func(player, 6, splash_DUR_2*redx) end,
2020-07-10 12:50:08 +02:00
-- TODO: Fix tooltip
tt = time_string(splash_DUR_2)
2020-06-29 02:31:08 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("strength_plus", "Strength Splash Potion +", "#D444E4", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.strength_func(player, 3, splash_DUR_pl*redx) end,
2020-07-10 12:50:08 +02:00
-- TODO: Fix tooltip
tt = time_string(splash_DUR_pl)
2020-06-29 02:31:08 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("water_breathing", "Water Breathing Splash Potion", "#0000AA", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.water_breathing_func(player, splash_DUR*redx) end,
tt = time_string(splash_DUR)
2020-06-18 23:59:36 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("water_breathing_plus", "Water Breathing Splash Potion +", "#0000CC", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.water_breathing_func(player, splash_DUR_pl*redx) end,
tt = time_string(splash_DUR_pl)
2020-06-18 23:59:36 +02:00
})
2020-06-21 03:00:57 +02:00
2020-07-10 12:50:08 +02:00
register_splash("fire_resistance", "Fire Resistance Splash Potion", "#D0A040", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.fire_resistance_func(player, splash_DUR*redx) end,
tt = time_string(splash_DUR)
2020-06-21 03:00:57 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("fire_resistance_plus", "Fire Resistance Splash Potion +", "#E0B050", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.fire_resistance_func(player, splash_DUR_pl*redx) end,
tt = time_string(splash_DUR_pl)
2020-06-21 03:00:57 +02:00
})
2020-07-10 12:50:08 +02:00
register_splash("night_vision", "Night Vision Splash Potion", "#1010AA", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.night_vision_func(player, splash_DUR*redx) end,
tt = time_string(splash_DUR)
})
2020-07-10 12:50:08 +02:00
register_splash("night_vision_plus", "Night Vision Splash Potion +", "#2020BA", {
2020-07-06 00:15:52 +02:00
potion_fun = function(player, redx) mcl_potions.night_vision_func(player, splash_DUR_pl*redx) end,
tt = time_string(splash_DUR_pl)
})