2021-05-29 16:12:33 +02:00
local S = minetest.get_translator ( minetest.get_current_modname ( ) )
2020-06-17 23:50:18 +02:00
2021-05-29 16:12:33 +02:00
local function potion_image ( colorstring , opacity )
2020-06-17 23:50:18 +02:00
if not opacity then
opacity = 127
end
2020-07-04 00:33:24 +02:00
return " mcl_potions_potion_overlay.png^[colorize: " .. colorstring .. " : " .. tostring ( opacity ) .. " ^mcl_potions_potion_bottle.png "
2020-06-17 23:50:18 +02:00
end
local how_to_drink = S ( " Use the “Place” key to drink it. " )
2023-11-03 22:28:00 +01:00
local potion_intro = S ( " Drinking a potion gives you a particular effect or set of effects. " )
2020-06-17 23:50:18 +02:00
2020-07-12 02:26:45 +02:00
local function time_string ( dur )
2020-08-08 10:00:16 +02:00
if not dur then
return nil
end
2020-07-12 02:26:45 +02:00
return math.floor ( dur / 60 ) .. string.format ( " :%02d " , math.floor ( dur % 60 ) )
end
2020-07-17 02:56:00 +02:00
local function perc_string ( num )
2020-07-17 03:02:21 +02:00
local rem = math.floor ( ( num - 1.0 ) * 100 + 0.1 ) % 5
local out = math.floor ( ( num - 1.0 ) * 100 + 0.1 ) - rem
2020-07-17 02:56:00 +02:00
if ( num - 1.0 ) < 0 then
2020-07-17 03:02:21 +02:00
return out .. " % "
2020-07-17 02:56:00 +02:00
else
2020-07-17 03:02:21 +02:00
return " + " .. out .. " % "
2020-07-17 02:56:00 +02:00
end
end
2020-07-11 19:40:48 +02:00
2020-07-22 23:46:49 +02:00
-- ██████╗░███████╗░██████╗░██╗░██████╗████████╗███████╗██████╗░
-- ██╔══██╗██╔════╝██╔════╝░██║██╔════╝╚══██╔══╝██╔════╝██╔══██╗
-- ██████╔╝█████╗░░██║░░██╗░██║╚█████╗░░░░██║░░░█████╗░░██████╔╝
-- ██╔══██╗██╔══╝░░██║░░╚██╗██║░╚═══██╗░░░██║░░░██╔══╝░░██╔══██╗
-- ██║░░██║███████╗╚██████╔╝██║██████╔╝░░░██║░░░███████╗██║░░██║
-- ╚═╝░░╚═╝╚══════╝░╚═════╝░╚═╝╚═════╝░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝
--
-- ██████╗░░█████╗░████████╗██╗░█████╗░███╗░░██╗░██████╗
-- ██╔══██╗██╔══██╗╚══██╔══╝██║██╔══██╗████╗░██║██╔════╝
-- ██████╔╝██║░░██║░░░██║░░░██║██║░░██║██╔██╗██║╚█████╗░
-- ██╔═══╝░██║░░██║░░░██║░░░██║██║░░██║██║╚████║░╚═══██╗
-- ██║░░░░░╚█████╔╝░░░██║░░░██║╚█████╔╝██║░╚███║██████╔╝
-- ╚═╝░░░░░░╚════╝░░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝╚═════╝░
2020-08-10 10:30:00 +02:00
function return_on_use ( def , effect , dur )
return function ( itemstack , user , pointed_thing )
if pointed_thing.type == " node " then
if user and not user : get_player_control ( ) . sneak then
-- Use pointed node's on_rightclick function first, if present
local node = minetest.get_node ( pointed_thing.under )
if user and not user : get_player_control ( ) . sneak then
if minetest.registered_nodes [ node.name ] and minetest.registered_nodes [ node.name ] . on_rightclick then
return minetest.registered_nodes [ node.name ] . on_rightclick ( pointed_thing.under , node , user , itemstack ) or itemstack
end
end
end
elseif pointed_thing.type == " object " then
return itemstack
end
2024-01-15 07:08:02 +01:00
--def.on_use(user, effect, dur) -- Will do effect immediately but not reduce item count until eating delay ends which makes it exploitable by deliberately not finishing delay
-- Wrapper for handling mcl_hunger delayed eating
local name = user : get_player_name ( )
mcl_hunger.eat_internal [ name ] . _custom_itemstack = itemstack -- Used as comparison to make sure the custom wrapper executes only when the same item is eaten
mcl_hunger.eat_internal [ name ] . _custom_var = {
user = user ,
effect = effect ,
dur = dur ,
}
mcl_hunger.eat_internal [ name ] . _custom_func = def.on_use
mcl_hunger.eat_internal [ name ] . _custom_wrapper = function ( name )
mcl_hunger.eat_internal [ name ] . _custom_func (
mcl_hunger.eat_internal [ name ] . _custom_var.user ,
mcl_hunger.eat_internal [ name ] . _custom_var.effect ,
mcl_hunger.eat_internal [ name ] . _custom_var.dur
)
end
2020-08-13 18:16:53 +02:00
local old_name , old_count = itemstack : get_name ( ) , itemstack : get_count ( )
itemstack = minetest.do_item_eat ( 0 , " mcl_potions:glass_bottle " , itemstack , user , pointed_thing )
if old_name ~= itemstack : get_name ( ) or old_count ~= itemstack : get_count ( ) then
mcl_potions._use_potion ( itemstack , user , def.color )
end
return itemstack
2020-08-10 10:30:00 +02:00
end
end
2023-10-27 05:06:45 +02:00
local function generate_on_use ( effects , color , on_use , custom_effect )
return function ( itemstack , user , pointed_thing )
if pointed_thing.type == " node " then
if user and not user : get_player_control ( ) . sneak then
local node = minetest.get_node ( pointed_thing.under )
if minetest.registered_nodes [ node.name ] and minetest.registered_nodes [ node.name ] . on_rightclick then
return minetest.registered_nodes [ node.name ] . on_rightclick ( pointed_thing.under , node , user , itemstack ) or itemstack
end
end
elseif pointed_thing.type == " object " then
return itemstack
end
local potency = itemstack : get_meta ( ) : get_int ( " mcl_potions:potion_potent " )
local plus = itemstack : get_meta ( ) : get_int ( " mcl_potions:potion_plus " )
local ef_level
local dur
for name , details in pairs ( effects ) do
if details.uses_level then
ef_level = details.level + details.level_scaling * ( potency )
else
ef_level = details.level
end
if details.dur_variable then
dur = details.dur * math.pow ( mcl_potions.PLUS_FACTOR , plus )
if potency > 0 and details.uses_level then
dur = dur / math.pow ( mcl_potions.POTENT_FACTOR , potency )
end
else
dur = details.dur
end
mcl_potions.give_effect_by_level ( name , user , ef_level , dur )
end
if on_use then on_use ( user , potency + 1 ) end
if custom_effect then custom_effect ( user , potency + 1 ) end
itemstack = minetest.do_item_eat ( 0 , " mcl_potions:glass_bottle " , itemstack , user , pointed_thing )
if itemstack then mcl_potions._use_potion ( user , color ) end
return itemstack
end
end
-- API - registers a potion
-- required parameters in def:
-- name - string - potion name in code
-- optional parameters in def:
-- desc_prefix - translated string - part of visible potion name, comes before the word "Potion"
-- desc_suffix - translated string - part of visible potion name, comes after the word "Potion"
-- _tt - translated string - custom tooltip text
-- _dynamic_tt - function(level) - returns custom tooltip text dependent on potion level
-- _longdesc - translated string - text for in-game documentation
-- stack_max - int - max stack size - defaults to 1
-- image - string - name of a custom texture of the potion icon
-- color - string - colorstring for potion icon when image is not defined - defaults to #0000FF
2024-01-07 22:56:58 +01:00
-- groups - table - item groups definition for the regular potion, not splash or lingering -
2023-10-27 05:06:45 +02:00
-- - must contain _mcl_potion=1 for tooltip to include dynamic_tt and effects
-- - defaults to {brewitem=1, food=3, can_eat_when_full=1, _mcl_potion=1}
-- _effect_list - table - all the effects dealt by the potion in the format of tables
-- -- the name of each sub-table should be a name of a registered effect, and fields can be the following:
-- -- -- uses_level - bool - whether the level of the potion affects the level of the effect -
-- -- -- - defaults to the uses_factor field of the effect definition
-- -- -- level - int - used as the effect level if uses_level is false and for lvl1 potions - defaults to 1
-- -- -- level_scaling - int - used as the number of effect levels added per potion level - defaults to 1 -
-- -- -- - this has no effect if uses_level is false
-- -- -- dur - float - duration of the effect in seconds - defaults to mcl_potions.DURATION
-- -- -- dur_variable - bool - whether variants of the potion should have the length of this effect changed -
-- -- -- - defaults to true
-- -- -- - if at least one effect has this set to true, the potion has a "plus" variant
-- uses_level - bool - whether the potion should come at different levels -
-- - defaults to true if uses_level is true for at least one effect, else false
-- drinkable - bool - defaults to true
-- has_splash - bool - defaults to true
-- has_lingering - bool - defaults to true
-- has_arrow - bool - defaults to false
-- has_potent - bool - whether there is a potent (e.g. II) variant - defaults to the value of uses_level
2023-11-03 22:28:00 +01:00
-- default_potent_level - int - potion level used for the default potent variant - defaults to 2
-- default_extend_level - int - extention level (amount of +) used for the default extended variant - defaults to 1
2024-01-07 22:56:58 +01:00
-- custom_on_use - function(user, level) - called when the potion is drunk, returns true on success
-- custom_effect - function(object, level) - called when the potion effects are applied, returns true on success
-- custom_splash_effect - function(pos, level) - called when the splash potion explodes, returns true on success
-- custom_linger_effect - function(pos, radius, level) - called on the lingering potion step, returns true on success
2023-10-27 05:06:45 +02:00
function mcl_potions . register_potion ( def )
local modname = minetest.get_current_modname ( )
local name = def.name
if name == nil then
error ( " Unable to register potion: name is nil " )
end
if type ( name ) ~= " string " then
error ( " Unable to register potion: name is not a string " )
end
local pdef = { }
2024-01-07 23:19:05 +01:00
if def.desc_prefix and def.desc_suffix then
pdef.description = S ( " @1 Potion @2 " , def.desc_prefix , def.desc_suffix )
elseif def.desc_prefix then
pdef.description = S ( " @1 Potion " , def.desc_prefix )
elseif def.desc_suffix then
pdef.description = S ( " Potion @1 " , def.desc_suffix )
else
pdef.description = S ( " Strange Potion " )
end
2023-10-27 05:06:45 +02:00
pdef._tt_help = def._tt
pdef._dynamic_tt = def._dynamic_tt
local potion_longdesc = def._longdesc
if def._effect_list then
potion_longdesc = potion_intro .. " \n " .. def._longdesc
end
pdef._doc_items_longdesc = potion_longdesc
if def.drinkable ~= false then pdef._doc_items_usagehelp = how_to_drink end
pdef.stack_max = def.stack_max or 1
local color = def.color or " #0000FF "
pdef.inventory_image = def.image or potion_image ( color )
pdef.wield_image = pdef.inventory_image
pdef.groups = def.groups or { brewitem = 1 , food = 3 , can_eat_when_full = 1 , _mcl_potion = 1 }
pdef._effect_list = { }
local effect
local uses_level = false
local has_plus = false
2024-01-07 22:56:58 +01:00
if def._effect_list then
for name , details in pairs ( def._effect_list ) do
no_effects = false
effect = mcl_potions.registered_effects [ name ]
if effect then
local ulvl
if details.uses_level ~= nil then ulvl = details.uses_level
else ulvl = effect.uses_factor end
if ulvl then uses_level = true end
local durvar = true
if details.dur_variable ~= nil then durvar = details.dur_variable end
if durvar then has_plus = true end
pdef._effect_list [ name ] = {
uses_level = ulvl ,
level = details.level or 1 ,
level_scaling = details.level_scaling or 1 ,
dur = details.dur or mcl_potions.DURATION ,
dur_variable = durvar ,
}
else
error ( " Unable to register potion: effect not registered " )
end
2023-10-27 05:06:45 +02:00
end
end
if def.uses_level ~= nil then uses_level = def.uses_level end
pdef.uses_level = uses_level
if def.has_potent ~= nil then pdef.has_potent = def.has_potent
else pdef.has_potent = uses_level end
2023-11-03 22:28:00 +01:00
pdef._default_potent_level = def.default_potent_level or 2
pdef._default_extend_level = def.default_extend_level or 1
2023-10-27 05:06:45 +02:00
pdef.has_plus = has_plus
local on_use
if def.drinkable ~= false then
on_use = generate_on_use ( pdef._effect_list , color , def.custom_on_use , def.custom_effect )
end
pdef.on_place = on_use
pdef.on_secondary_use = on_use
minetest.register_craftitem ( modname .. " : " .. name , pdef )
2024-01-07 22:56:58 +01:00
if def.has_splash or def.has_splash == nil then
2024-01-07 23:19:05 +01:00
local splash_desc = S ( " Splash @1 " , pdef.description )
2024-01-07 22:56:58 +01:00
local sdef = { }
sdef._tt = def._tt
sdef._dynamic_tt = def._dynamic_tt
sdef._longdesc = def._longdesc
sdef.stack_max = pdef.stack_max
sdef._effect_list = pdef._effect_list
sdef.uses_level = uses_level
sdef.has_potent = pdef.has_potent
sdef.has_plus = has_plus
sdef._default_potent_level = pdef._default_potent_level
sdef._default_extend_level = pdef._default_extend_level
sdef.custom_effect = def.custom_effect
sdef.on_splash = def.custom_splash_effect
if not def._effect_list then sdef.instant = true end
mcl_potions.register_splash ( name , splash_desc , color , sdef )
end
if def.has_lingering or def.has_lingering == nil then
2024-01-07 23:19:05 +01:00
local ling_desc = S ( " Lingering @1 " , pdef.description )
2024-01-07 22:56:58 +01:00
local ldef = { }
ldef._tt = def._tt
ldef._longdesc = def._longdesc
ldef.stack_max = pdef.stack_max
ldef._effect_list = pdef._effect_list
ldef.uses_level = uses_level
ldef.has_potent = pdef.has_potent
ldef.has_plus = has_plus
ldef._default_potent_level = pdef._default_potent_level
ldef._default_extend_level = pdef._default_extend_level
ldef.custom_effect = def.custom_effect
ldef.on_splash = def.custom_splash_effect
ldef.while_lingering = def.custom_linger_effect
if not def._effect_list then ldef.instant = true end
mcl_potions.register_lingering ( name , ling_desc , color , ldef )
end
if def.has_arrow then
2024-01-07 23:19:05 +01:00
local arr_desc
if def.desc_prefix and def.desc_suffix then
arr_desc = S ( " @1 Arrow @2 " , def.desc_prefix , def.desc_suffix )
elseif def.desc_prefix then
arr_desc = S ( " @1 Arrow " , def.desc_prefix )
elseif def.desc_suffix then
arr_desc = S ( " Arrow @1 " , def.desc_suffix )
else
arr_desc = S ( " Strange Tipped Arrow " )
end
2024-01-07 22:56:58 +01:00
local adef = { }
adef._tt = def._tt
adef._longdesc = def._longdesc
adef._effect_list = pdef._effect_list
adef.uses_level = uses_level
adef.has_potent = pdef.has_potent
adef.has_plus = has_plus
adef._default_potent_level = pdef._default_potent_level
adef._default_extend_level = pdef._default_extend_level
adef.custom_effect = def.custom_effect
if not def._effect_list then adef.instant = true end
mcl_potions.register_arrow ( name , arr_desc , color , adef )
end
2023-10-27 05:06:45 +02:00
end
mcl_potions.register_potion ( {
name = " trolling " ,
desc_prefix = S ( " Mighty " ) ,
desc_suffix = S ( " of Trolling " ) ,
_tt = " trololo " ,
_dynamic_tt = function ( level )
return " trolololoooololo "
end ,
_longdesc = " Trolololololo " ,
stack_max = 2 ,
color = " #00AA00 " ,
_effect_list = {
night_vision = { } ,
strength = { } ,
swiftness = {
uses_level = false ,
level = 2 ,
} ,
poison = {
dur = 10 ,
} ,
} ,
2023-11-03 22:28:00 +01:00
default_potent_level = 5 ,
default_extend_level = 3 ,
2024-01-07 22:56:58 +01:00
custom_splash_effect = mcl_potions._extinguish_nearby_fire ,
has_arrow = true ,
2023-10-27 05:06:45 +02:00
} )
2020-08-10 10:30:00 +02:00
2020-07-11 19:40:48 +02:00
local function register_potion ( def )
2020-07-12 02:26:45 +02:00
local dur = mcl_potions.DURATION
if def.is_inv then
dur = dur * mcl_potions.INV_FACTOR
end
2023-08-08 02:53:01 +02:00
if def.name == " poison " or def.name == " regeneration " or def.name == " withering " then
2020-07-12 02:26:45 +02:00
dur = 45
end
2020-08-08 23:48:03 +02:00
local on_use = nil
if def.on_use then
2020-08-10 10:30:00 +02:00
on_use = return_on_use ( def , def.effect , dur )
2020-08-08 23:48:03 +02:00
end
2020-07-12 02:26:45 +02:00
2020-07-12 13:18:54 +02:00
local function get_tt ( tt , effect , dur )
local _tt
if effect and def.is_dur then
2020-07-17 02:56:00 +02:00
_tt = perc_string ( effect ) .. " | " .. time_string ( dur )
2023-08-08 02:53:01 +02:00
if def.name == " poison " or def.name == " regeneration " or def.name == " withering " then
2020-08-05 15:10:05 +02:00
_tt = S ( " 1 HP/@1s | @2 " , effect , time_string ( dur ) )
2020-07-12 13:18:54 +02:00
end
2020-07-12 13:59:29 +02:00
elseif def.name == " healing " or def.name == " harming " then
2020-08-05 15:10:05 +02:00
_tt = S ( " @1 HP " , effect )
2021-04-17 09:26:37 +02:00
else
2020-07-12 13:18:54 +02:00
_tt = tt or time_string ( dur ) or S ( " No effect " )
2020-07-12 02:26:45 +02:00
end
2020-07-12 13:18:54 +02:00
return _tt
2020-07-12 02:26:45 +02:00
end
2020-07-12 13:35:11 +02:00
local function get_splash_fun ( effect , sp_dur )
2020-07-12 13:59:29 +02:00
if def.is_dur then
2020-07-12 13:35:11 +02:00
return function ( player , redx ) def.on_use ( player , effect , sp_dur * redx ) end
2020-07-12 18:32:54 +02:00
elseif def.effect then
2020-07-12 13:35:11 +02:00
return function ( player , redx ) def.on_use ( player , effect * redx , sp_dur ) end
end
2020-07-12 18:32:54 +02:00
-- covers case of no effect (water, awkward, mundane)
2020-07-13 03:15:54 +02:00
return function ( ) end
2020-07-12 13:35:11 +02:00
end
2020-07-20 00:56:18 +02:00
local function get_lingering_fun ( effect , ling_dur )
if def.is_dur then
return function ( player ) def.on_use ( player , effect , ling_dur ) end
elseif def.effect then
return function ( player ) def.on_use ( player , effect * 0.5 , ling_dur ) end
end
-- covers case of no effect (water, awkward, mundane)
return function ( ) end
end
2020-07-20 03:08:50 +02:00
local function get_arrow_fun ( effect , dur )
2020-07-12 13:59:29 +02:00
if def.is_dur then
2020-07-20 03:08:50 +02:00
return function ( player ) def.on_use ( player , effect , dur ) end
2020-07-12 18:32:54 +02:00
elseif def.effect then
2020-07-20 03:08:50 +02:00
return function ( player ) def.on_use ( player , effect , dur ) end
2020-07-12 13:59:29 +02:00
end
2020-07-12 18:32:54 +02:00
-- covers case of no effect (water, awkward, mundane)
return function ( ) end
2020-07-12 13:59:29 +02:00
end
2020-07-31 10:41:44 +02:00
local desc
if not def.no_potion then
2020-08-05 15:10:05 +02:00
if def.description_potion then
desc = def.description_potion
else
desc = S ( " @1 Potion " , def.description )
end
2020-07-31 10:41:44 +02:00
else
desc = def.description
end
2020-08-01 03:20:52 +02:00
local potion_longdesc = def._longdesc
if not def.no_effect then
potion_longdesc = potion_intro .. " \n " .. def._longdesc
end
2020-08-08 10:00:16 +02:00
local potion_usagehelp
2020-08-01 03:20:52 +02:00
local basic_potion_tt
if def.name ~= " dragon_breath " then
potion_usagehelp = how_to_drink
basic_potion_tt = get_tt ( def._tt , def.effect , dur )
end
2020-07-31 10:41:44 +02:00
2020-07-11 19:40:48 +02:00
minetest.register_craftitem ( " mcl_potions: " .. def.name , {
2020-07-31 10:41:44 +02:00
description = desc ,
2020-08-01 03:20:52 +02:00
_tt_help = basic_potion_tt ,
_doc_items_longdesc = potion_longdesc ,
_doc_items_usagehelp = potion_usagehelp ,
2020-07-28 23:02:43 +02:00
stack_max = def.stack_max or 1 ,
2020-07-12 02:26:45 +02:00
inventory_image = def.image or potion_image ( def.color ) ,
wield_image = def.image or potion_image ( def.color ) ,
2023-10-27 00:15:57 +02:00
groups = def.groups or { brewitem = 1 , food = 3 , can_eat_when_full = 1 , bottle = 1 } ,
2020-07-12 02:26:45 +02:00
on_place = on_use ,
on_secondary_use = on_use ,
2020-07-11 19:40:48 +02:00
} )
2020-07-12 13:59:29 +02:00
-- Register Splash and Lingering
2020-07-12 13:18:54 +02:00
local splash_dur = dur * mcl_potions.SPLASH_FACTOR
2020-07-12 13:59:29 +02:00
local ling_dur = dur * mcl_potions.LINGERING_FACTOR
2020-07-12 13:18:54 +02:00
local splash_def = {
tt = get_tt ( def._tt , def.effect , splash_dur ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 13:35:11 +02:00
potion_fun = get_splash_fun ( def.effect , splash_dur ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 13:18:54 +02:00
}
2020-07-12 14:20:56 +02:00
local ling_def
if def.name == " healing " or def.name == " harming " then
ling_def = {
tt = get_tt ( def._tt , def.effect * mcl_potions.LINGERING_FACTOR , ling_dur ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 14:20:56 +02:00
potion_fun = get_lingering_fun ( def.effect * mcl_potions.LINGERING_FACTOR , ling_dur ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 14:20:56 +02:00
}
else
ling_def = {
tt = get_tt ( def._tt , def.effect , ling_dur ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 14:20:56 +02:00
potion_fun = get_lingering_fun ( def.effect , ling_dur ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 14:20:56 +02:00
}
end
2020-07-20 00:56:18 +02:00
local arrow_def = {
2020-07-20 03:08:50 +02:00
tt = get_tt ( def._tt , def.effect , dur / 8. ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-20 03:08:50 +02:00
potion_fun = get_arrow_fun ( def.effect , dur / 8. ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-20 00:56:18 +02:00
}
2020-07-31 10:41:44 +02:00
if def.color and not def.no_throwable then
2020-08-05 15:10:05 +02:00
local desc
if def.description_splash then
desc = def.description_splash
else
desc = S ( " Splash @1 Potion " , def.description )
end
mcl_potions.register_splash ( def.name , desc , def.color , splash_def )
if def.description_lingering then
desc = def.description_lingering
else
desc = S ( " Lingering @1 Potion " , def.description )
end
mcl_potions.register_lingering ( def.name , desc , def.color , ling_def )
2020-07-31 10:41:44 +02:00
if not def.no_arrow then
mcl_potions.register_arrow ( def.name , S ( " Arrow of @1 " , def.description ) , def.color , arrow_def )
end
2020-07-12 13:18:54 +02:00
end
2020-07-11 19:40:48 +02:00
if def.is_II then
2020-07-12 02:26:45 +02:00
2020-07-31 10:41:44 +02:00
local desc_mod = S ( " II " )
2020-07-12 02:26:45 +02:00
local effect_II
if def.name == " healing " or def.name == " harming " then
effect_II = def.effect * mcl_potions.II_FACTOR
elseif def.name == " poison " or def.name == " regeneration " then
effect_II = 1.2
2023-08-08 02:53:01 +02:00
elseif def.name == " withering " then
effect_II = 2
2020-07-12 02:26:45 +02:00
else
effect_II = def.effect ^ mcl_potions.II_FACTOR
end
2020-07-13 03:15:54 +02:00
local dur_2 = dur / mcl_potions.II_FACTOR
2020-07-12 02:26:45 +02:00
if def.name == " poison " then dur_2 = dur_2 - 1 end
if def.name == " slowness " then
dur_2 = 20
effect_II = 0.40
2020-07-31 10:41:44 +02:00
desc_mod = S ( " IV " )
2020-07-12 02:26:45 +02:00
end
2020-08-10 10:30:00 +02:00
on_use = return_on_use ( def , effect_II , dur_2 )
2020-07-12 02:26:45 +02:00
minetest.register_craftitem ( " mcl_potions: " .. def.name .. " _2 " , {
2020-07-31 10:41:44 +02:00
description = S ( " @1 Potion@2 " , def.description , desc_mod ) ,
2020-07-12 13:18:54 +02:00
_tt_help = get_tt ( def._tt_2 , effect_II , dur_2 ) ,
2020-08-01 03:20:52 +02:00
_doc_items_longdesc = potion_longdesc ,
_doc_items_usagehelp = potion_usagehelp ,
2020-07-25 01:02:54 +02:00
stack_max = def.stack_max or 1 ,
2020-07-12 02:26:45 +02:00
inventory_image = def.image or potion_image ( def.color ) ,
wield_image = def.image or potion_image ( def.color ) ,
2023-10-27 00:15:57 +02:00
groups = def.groups or { brewitem = 1 , food = 3 , can_eat_when_full = 1 , bottle = 1 } ,
2020-07-12 02:26:45 +02:00
on_place = on_use ,
on_secondary_use = on_use ,
} )
2020-07-12 13:18:54 +02:00
2020-07-12 13:59:29 +02:00
-- Register Splash and Lingering
2020-07-12 13:18:54 +02:00
local splash_dur_2 = dur_2 * mcl_potions.SPLASH_FACTOR
2020-07-12 13:59:29 +02:00
local ling_dur_2 = dur_2 * mcl_potions.LINGERING_FACTOR
2020-07-12 13:18:54 +02:00
2020-07-12 14:50:48 +02:00
local splash_def_2
if def.name == " healing " then
splash_def_2 = {
tt = get_tt ( def._tt_2 , 7 , splash_dur_2 ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 14:50:48 +02:00
potion_fun = get_splash_fun ( 7 , splash_dur_2 ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 14:50:48 +02:00
}
else
splash_def_2 = {
tt = get_tt ( def._tt_2 , effect_II , splash_dur_2 ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 14:50:48 +02:00
potion_fun = get_splash_fun ( effect_II , splash_dur_2 ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 14:50:48 +02:00
}
end
local ling_def_2
2020-07-12 14:20:56 +02:00
if def.name == " healing " or def.name == " harming " then
2020-07-12 14:50:48 +02:00
ling_def_2 = {
tt = get_tt ( def._tt_2 , effect_II * mcl_potions.LINGERING_FACTOR , ling_dur_2 ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 14:50:48 +02:00
potion_fun = get_lingering_fun ( effect_II * mcl_potions.LINGERING_FACTOR , ling_dur_2 ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 14:50:48 +02:00
}
else
ling_def_2 = {
tt = get_tt ( def._tt_2 , effect_II , ling_dur_2 ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 14:50:48 +02:00
potion_fun = get_lingering_fun ( effect_II , ling_dur_2 ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 14:50:48 +02:00
}
2020-07-12 14:20:56 +02:00
end
2020-07-12 14:50:48 +02:00
2020-07-20 03:08:50 +02:00
local arrow_def_2 = {
tt = get_tt ( def._tt_2 , effect_II , dur_2 / 8. ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-20 03:08:50 +02:00
potion_fun = get_arrow_fun ( effect_II , dur_2 / 8. ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-20 03:08:50 +02:00
}
2020-07-31 10:41:44 +02:00
if def.color and not def.no_throwable then
mcl_potions.register_splash ( def.name .. " _2 " , S ( " Splash @1@2 Potion " , def.description , desc_mod ) , def.color , splash_def_2 )
mcl_potions.register_lingering ( def.name .. " _2 " , S ( " Lingering @1@2 Potion " , def.description , desc_mod ) , def.color , ling_def_2 )
if not def.no_arrow then
mcl_potions.register_arrow ( def.name .. " _2 " , S ( " Arrow of @1@2 " , def.description , desc_mod ) , def.color , arrow_def_2 )
end
2020-07-12 13:18:54 +02:00
end
2020-07-12 02:26:45 +02:00
end
if def.is_plus then
2020-07-13 03:15:54 +02:00
local dur_pl = dur * mcl_potions.PLUS_FACTOR
2023-08-08 02:53:01 +02:00
if def.name == " poison " or def.name == " regeneration " or def.name == " withering " then
2020-07-12 02:26:45 +02:00
dur_pl = 90
end
2020-08-10 10:30:00 +02:00
on_use = return_on_use ( def , def.effect , dur_pl )
2020-07-12 02:26:45 +02:00
minetest.register_craftitem ( " mcl_potions: " .. def.name .. " _plus " , {
2020-07-31 10:41:44 +02:00
description = S ( " @1 + Potion " , def.description ) ,
2020-07-12 13:18:54 +02:00
_tt_help = get_tt ( def._tt_plus , def.effect , dur_pl ) ,
2020-08-01 03:20:52 +02:00
_doc_items_longdesc = potion_longdesc ,
_doc_items_usagehelp = potion_usagehelp ,
2020-07-12 02:26:45 +02:00
stack_max = 1 ,
inventory_image = def.image or potion_image ( def.color ) ,
wield_image = def.image or potion_image ( def.color ) ,
2023-10-27 00:15:57 +02:00
groups = def.groups or { brewitem = 1 , food = 3 , can_eat_when_full = 1 , bottle = 1 } ,
2020-07-12 02:26:45 +02:00
on_place = on_use ,
on_secondary_use = on_use ,
} )
2020-07-12 13:35:11 +02:00
-- Register Splash
2020-07-12 13:18:54 +02:00
local splash_dur_pl = dur_pl * mcl_potions.SPLASH_FACTOR
2020-07-12 13:59:29 +02:00
local ling_dur_pl = dur_pl * mcl_potions.LINGERING_FACTOR
2020-07-12 13:18:54 +02:00
2020-07-12 13:35:11 +02:00
local splash_def_pl = {
tt = get_tt ( def._tt_plus , def.effect , splash_dur_pl ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 13:35:11 +02:00
potion_fun = get_splash_fun ( def.effect , splash_dur_pl ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 13:18:54 +02:00
}
2020-07-12 13:59:29 +02:00
local ling_def_pl = {
tt = get_tt ( def._tt_plus , def.effect , ling_dur_pl ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-12 13:59:29 +02:00
potion_fun = get_lingering_fun ( def.effect , ling_dur_pl ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-12 13:59:29 +02:00
}
2020-07-20 03:08:50 +02:00
local arrow_def_pl = {
tt = get_tt ( def._tt_pl , def.effect , dur_pl / 8. ) ,
2020-08-01 03:20:52 +02:00
longdesc = def._longdesc ,
2020-07-20 03:08:50 +02:00
potion_fun = get_arrow_fun ( def.effect , dur_pl / 8. ) ,
2020-08-01 03:20:52 +02:00
no_effect = def.no_effect ,
2020-08-19 17:37:41 +02:00
instant = def.instant ,
2020-07-20 03:08:50 +02:00
}
2020-07-31 10:41:44 +02:00
if def.color and not def.no_throwable then
mcl_potions.register_splash ( def.name .. " _plus " , S ( " Splash @1 + Potion " , def.description ) , def.color , splash_def_pl )
mcl_potions.register_lingering ( def.name .. " _plus " , S ( " Lingering @1 + Potion " , def.description ) , def.color , ling_def_pl )
if not def.no_arrow then
mcl_potions.register_arrow ( def.name .. " _plus " , S ( " Arrow of @1 + " , def.description ) , def.color , arrow_def_pl )
end
2020-07-12 13:18:54 +02:00
end
2020-07-11 19:40:48 +02:00
end
end
2020-07-22 23:46:49 +02:00
-- ██████╗░░█████╗░████████╗██╗░█████╗░███╗░░██╗
-- ██╔══██╗██╔══██╗╚══██╔══╝██║██╔══██╗████╗░██║
-- ██████╔╝██║░░██║░░░██║░░░██║██║░░██║██╔██╗██║
-- ██╔═══╝░██║░░██║░░░██║░░░██║██║░░██║██║╚████║
-- ██║░░░░░╚█████╔╝░░░██║░░░██║╚█████╔╝██║░╚███║
-- ╚═╝░░░░░░╚════╝░░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝
--
-- ██████╗░███████╗███████╗██╗███╗░░██╗██╗████████╗██╗░█████╗░███╗░░██╗░██████╗
-- ██╔══██╗██╔════╝██╔════╝██║████╗░██║██║╚══██╔══╝██║██╔══██╗████╗░██║██╔════╝
-- ██║░░██║█████╗░░█████╗░░██║██╔██╗██║██║░░░██║░░░██║██║░░██║██╔██╗██║╚█████╗░
-- ██║░░██║██╔══╝░░██╔══╝░░██║██║╚████║██║░░░██║░░░██║██║░░██║██║╚████║░╚═══██╗
-- ██████╔╝███████╗██║░░░░░██║██║░╚███║██║░░░██║░░░██║╚█████╔╝██║░╚███║██████╔╝
-- ╚═════╝░╚══════╝╚═╝░░░░░╚═╝╚═╝░░╚══╝╚═╝░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝╚═════╝░
2020-07-11 19:40:48 +02:00
local awkward_def = {
name = " awkward " ,
2020-08-05 15:10:05 +02:00
description_potion = S ( " Awkward Potion " ) ,
description_splash = S ( " Awkward Splash Potion " ) ,
description_lingering = S ( " Awkward Lingering Potion " ) ,
2020-07-31 10:41:44 +02:00
no_arrow = true ,
2020-08-01 03:20:52 +02:00
no_effect = true ,
2020-07-11 19:40:48 +02:00
_tt = S ( " No effect " ) ,
_longdesc = S ( " Has an awkward taste and is used for brewing potions. " ) ,
2020-07-12 02:26:45 +02:00
color = " #0000FF " ,
2023-10-27 00:15:57 +02:00
groups = { brewitem = 1 , food = 3 , can_eat_when_full = 1 , bottle = 1 } ,
2020-07-11 19:40:48 +02:00
on_use = minetest.item_eat ( 0 , " mcl_potions:glass_bottle " ) ,
}
2020-06-19 03:04:31 +02:00
2020-07-11 19:40:48 +02:00
local mundane_def = {
name = " mundane " ,
2020-08-05 15:10:05 +02:00
description_potion = S ( " Mundane Potion " ) ,
description_splash = S ( " Mundane Splash Potion " ) ,
description_lingering = S ( " Mundane Lingering Potion " ) ,
2020-07-31 10:41:44 +02:00
no_arrow = true ,
2020-08-01 03:20:52 +02:00
no_effect = true ,
2020-07-11 19:40:48 +02:00
_tt = S ( " No effect " ) ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Has a terrible taste and is not useful for brewing potions. " ) ,
2020-07-12 02:26:45 +02:00
color = " #0000FF " ,
2020-07-11 19:40:48 +02:00
on_use = minetest.item_eat ( 0 , " mcl_potions:glass_bottle " ) ,
}
local thick_def = {
name = " thick " ,
2020-08-05 15:10:05 +02:00
description_potion = S ( " Thick Potion " ) ,
description_splash = S ( " Thick Splash Potion " ) ,
description_lingering = S ( " Thick Lingering Potion " ) ,
2020-07-31 10:41:44 +02:00
no_arrow = true ,
2020-08-01 03:20:52 +02:00
no_effect = true ,
2020-07-11 19:40:48 +02:00
_tt = S ( " No effect " ) ,
2020-07-17 23:09:51 +02:00
_longdesc = S ( " Has a bitter taste and is not useful for brewing potions. " ) ,
2020-07-12 02:26:45 +02:00
color = " #0000FF " ,
2020-07-11 19:40:48 +02:00
on_use = minetest.item_eat ( 0 , " mcl_potions:glass_bottle " ) ,
}
local dragon_breath_def = {
name = " dragon_breath " ,
2020-07-31 10:41:44 +02:00
description = S ( " Dragon's Breath " ) ,
no_arrow = true ,
no_potion = true ,
no_throwable = true ,
2020-08-01 03:20:52 +02:00
no_effect = true ,
_longdesc = S ( " This item is used in brewing and can be combined with splash potions to create lingering potions. " ) ,
2021-01-17 12:07:49 +01:00
image = " mcl_potions_dragon_breath.png " ,
2023-10-27 00:15:57 +02:00
groups = { brewitem = 1 , bottle = 1 } ,
2020-07-11 19:40:48 +02:00
on_use = nil ,
2020-07-25 01:02:54 +02:00
stack_max = 64 ,
2020-07-11 19:40:48 +02:00
}
2020-06-17 23:50:18 +02:00
2020-07-11 19:40:48 +02:00
local healing_def = {
name = " healing " ,
2020-07-31 10:41:44 +02:00
description = S ( " Healing " ) ,
2020-08-05 15:10:05 +02:00
_tt = S ( " +4 HP " ) ,
_tt_2 = S ( " +8 HP " ) ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Instantly heals. " ) ,
2021-05-14 12:07:42 +02:00
color = " #F82423 " ,
2020-07-12 02:26:45 +02:00
effect = 4 ,
2020-08-19 17:37:41 +02:00
instant = true ,
2020-07-12 02:26:45 +02:00
on_use = mcl_potions.healing_func ,
is_II = true ,
2020-07-11 19:40:48 +02:00
}
local harming_def = {
name = " harming " ,
2020-07-31 10:41:44 +02:00
description = S ( " Harming " ) ,
2020-08-05 15:10:05 +02:00
_tt = S ( " -6 HP " ) ,
_tt_II = S ( " -12 HP " ) ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Instantly deals damage. " ) ,
2021-05-14 12:07:42 +02:00
color = " #430A09 " ,
2020-07-12 02:26:45 +02:00
effect = - 6 ,
2020-08-19 17:37:41 +02:00
instant = true ,
2020-07-12 02:26:45 +02:00
on_use = mcl_potions.healing_func ,
is_II = true ,
2020-07-12 13:59:29 +02:00
is_inv = true ,
2020-07-12 02:26:45 +02:00
}
local night_vision_def = {
name = " night_vision " ,
2020-07-31 10:41:44 +02:00
description = S ( " Night Vision " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-19 10:40:07 +02:00
_longdesc = S ( " Increases the perceived brightness of light under a dark sky. " ) ,
2021-05-14 12:07:42 +02:00
color = " #1F1FA1 " ,
2020-07-12 02:26:45 +02:00
effect = nil ,
is_dur = true ,
on_use = mcl_potions.night_vision_func ,
is_plus = true ,
}
local swiftness_def = {
name = " swiftness " ,
2020-07-31 10:41:44 +02:00
description = S ( " Swiftness " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Increases walking speed. " ) ,
2021-05-14 12:07:42 +02:00
color = " #7CAFC6 " ,
2020-07-12 02:26:45 +02:00
effect = 1.2 ,
is_dur = true ,
on_use = mcl_potions.swiftness_func ,
is_II = true ,
is_plus = true ,
}
local slowness_def = {
name = " slowness " ,
2020-07-31 10:41:44 +02:00
description = S ( " Slowness " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Decreases walking speed. " ) ,
2021-05-14 12:07:42 +02:00
color = " #5A6C81 " ,
2020-07-12 02:26:45 +02:00
effect = 0.85 ,
is_dur = true ,
2023-10-01 04:33:40 +02:00
on_use = mcl_potions.slowness_func ,
2020-07-12 02:26:45 +02:00
is_II = true ,
is_plus = true ,
is_inv = true ,
}
local leaping_def = {
name = " leaping " ,
2020-07-31 10:41:44 +02:00
description = S ( " Leaping " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Increases jump strength. " ) ,
2021-05-14 12:07:42 +02:00
color = " #22FF4C " ,
2020-07-17 02:56:00 +02:00
effect = 1.15 ,
2020-07-12 02:26:45 +02:00
is_dur = true ,
on_use = mcl_potions.leaping_func ,
is_II = true ,
is_plus = true ,
}
2023-08-08 02:53:01 +02:00
local withering_def = {
name = " withering " ,
description = S ( " Withering " ) ,
_tt = nil ,
_longdesc = S ( " Applies the withering effect which deals damage at a regular interval and can kill. " ) ,
color = " #000000 " ,
effect = 4 ,
is_dur = true ,
on_use = mcl_potions.withering_func ,
is_II = true ,
is_plus = true ,
is_inv = true ,
}
2020-07-12 02:26:45 +02:00
local poison_def = {
name = " poison " ,
2020-07-31 10:41:44 +02:00
description = S ( " Poison " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Applies the poison effect which deals damage at a regular interval. " ) ,
2021-05-14 12:07:42 +02:00
color = " #4E9331 " ,
2020-07-12 02:26:45 +02:00
effect = 2.5 ,
is_dur = true ,
on_use = mcl_potions.poison_func ,
is_II = true ,
is_plus = true ,
is_inv = true ,
}
local regeneration_def = {
name = " regeneration " ,
2020-07-31 10:41:44 +02:00
description = S ( " Regeneration " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Regenerates health over time. " ) ,
2021-05-14 12:07:42 +02:00
color = " #CD5CAB " ,
2020-07-12 02:26:45 +02:00
effect = 2.5 ,
is_dur = true ,
on_use = mcl_potions.regeneration_func ,
is_II = true ,
is_plus = true ,
}
local invisibility_def = {
name = " invisibility " ,
2020-07-31 10:41:44 +02:00
description = S ( " Invisibility " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Grants invisibility. " ) ,
2021-05-14 12:07:42 +02:00
color = " #7F8392 " ,
2020-07-12 02:26:45 +02:00
is_dur = true ,
on_use = mcl_potions.invisiblility_func ,
is_plus = true ,
}
local water_breathing_def = {
name = " water_breathing " ,
2020-07-31 10:41:44 +02:00
description = S ( " Water Breathing " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Grants limitless breath underwater. " ) ,
2021-05-14 12:07:42 +02:00
color = " #2E5299 " ,
2020-07-12 02:26:45 +02:00
is_dur = true ,
on_use = mcl_potions.water_breathing_func ,
is_plus = true ,
}
local fire_resistance_def = {
name = " fire_resistance " ,
2020-07-31 10:41:44 +02:00
description = S ( " Fire Resistance " ) ,
2020-07-12 02:26:45 +02:00
_tt = nil ,
2020-08-01 03:20:52 +02:00
_longdesc = S ( " Grants immunity to damage from heat sources like fire. " ) ,
2021-05-14 12:07:42 +02:00
color = " #E49A3A " ,
2020-07-12 02:26:45 +02:00
is_dur = true ,
on_use = mcl_potions.fire_resistance_func ,
is_plus = true ,
2020-07-11 19:40:48 +02:00
}
2020-07-11 20:27:37 +02:00
local defs = { awkward_def , mundane_def , thick_def , dragon_breath_def ,
2020-08-08 10:00:16 +02:00
healing_def , harming_def , night_vision_def , swiftness_def ,
2023-08-08 02:53:01 +02:00
slowness_def , leaping_def , withering_def , poison_def , regeneration_def ,
2020-08-08 10:00:16 +02:00
invisibility_def , water_breathing_def , fire_resistance_def }
2020-07-11 19:40:48 +02:00
2024-01-07 22:56:58 +01:00
-- for _, def in ipairs(defs) do
-- register_potion(def)
-- end
2020-06-17 23:50:18 +02:00
2020-07-11 01:25:34 +02:00
-- minetest.register_craftitem("mcl_potions:weakness", {
2020-07-31 10:41:44 +02:00
-- description = S("Weakness"),
2020-08-08 09:32:38 +02:00
-- _tt_help = TODO,
2020-07-11 01:25:34 +02:00
-- _doc_items_longdesc = brewhelp,
2021-05-14 12:07:42 +02:00
-- wield_image = potion_image("#484D48"),
-- inventory_image = potion_image("#484D48"),
2020-08-01 03:20:52 +02:00
-- groups = { brewitem=1, food=3, can_eat_when_full=1 },
2020-07-11 01:25:34 +02:00
-- stack_max = 1,
--
-- on_place = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, -4, mcl_potions.DURATION*mcl_potions.INV_FACTOR)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#484D48")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end,
--
-- on_secondary_use = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, -4, mcl_potions.DURATION*mcl_potions.INV_FACTOR)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#484D48")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end
-- })
--
-- minetest.register_craftitem("mcl_potions:weakness_plus", {
2020-07-31 10:41:44 +02:00
-- description = S("Weakness +"),
2020-08-08 09:32:38 +02:00
-- _tt_help = TODO,
2020-07-11 01:25:34 +02:00
-- _doc_items_longdesc = brewhelp,
2021-05-14 12:07:42 +02:00
-- wield_image = potion_image("#484D48"),
-- inventory_image = potion_image("#484D48"),
2020-08-01 03:20:52 +02:00
-- groups = { brewitem=1, food=3, can_eat_when_full=1 },
2020-07-11 01:25:34 +02:00
-- stack_max = 1,
--
-- on_place = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, -4, mcl_potions.DURATION_2*mcl_potions.INV_FACTOR)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#484D48")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end,
--
-- on_secondary_use = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, -4, mcl_potions.DURATION_2*mcl_potions.INV_FACTOR)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#484D48")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end
-- })
--
-- minetest.register_craftitem("mcl_potions:strength", {
2020-07-31 10:41:44 +02:00
-- description = S("Strength"),
2020-08-08 09:32:38 +02:00
-- _tt_help = TODO,
2020-07-11 01:25:34 +02:00
-- _doc_items_longdesc = brewhelp,
2021-05-14 12:07:42 +02:00
-- wield_image = potion_image("#932423"),
-- inventory_image = potion_image("#932423"),
2020-08-01 03:20:52 +02:00
-- groups = { brewitem=1, food=3, can_eat_when_full=1 },
2020-07-11 01:25:34 +02:00
-- stack_max = 1,
--
-- on_place = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, 3, mcl_potions.DURATION)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#932423")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end,
--
-- on_secondary_use = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, 3, mcl_potions.DURATION)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#932423")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end
-- })
--
-- minetest.register_craftitem("mcl_potions:strength_2", {
2020-07-31 10:41:44 +02:00
-- description = S("Strength II"),
2020-08-08 09:32:38 +02:00
-- _tt_help = TODO,
2020-07-11 01:25:34 +02:00
-- _doc_items_longdesc = brewhelp,
2021-05-14 12:07:42 +02:00
-- wield_image = potion_image("#932423"),
-- inventory_image = potion_image("#932423"),
2020-08-01 03:20:52 +02:00
-- groups = { brewitem=1, food=3, can_eat_when_full=1 },
2020-07-11 01:25:34 +02:00
-- stack_max = 1,
--
-- on_place = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, 6, mcl_potions.DURATION_2)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#932423")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end,
--
-- on_secondary_use = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, 6, mcl_potions.DURATION_2)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#932423")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end
-- })
--
-- minetest.register_craftitem("mcl_potions:strength_plus", {
2020-07-31 10:41:44 +02:00
-- description = S("Strength +"),
2020-08-08 09:32:38 +02:00
-- _tt_help = TODO,
2020-07-11 01:25:34 +02:00
-- _doc_items_longdesc = brewhelp,
2021-05-14 12:07:42 +02:00
-- wield_image = potion_image("#932423"),
-- inventory_image = potion_image("#932423"),
2020-08-01 03:20:52 +02:00
-- groups = { brewitem=1, food=3, can_eat_when_full=1 },
2020-07-11 01:25:34 +02:00
-- stack_max = 1,
--
-- on_place = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, 3, mcl_potions.DURATION_PLUS)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#932423")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end,
--
-- on_secondary_use = function(itemstack, user, pointed_thing)
-- mcl_potions.weakness_func(user, 3, mcl_potions.DURATION_PLUS)
-- minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
2021-05-14 12:07:42 +02:00
-- mcl_potions._use_potion(itemstack, user, "#932423")
2020-07-11 01:25:34 +02:00
-- return itemstack
-- end
-- })