forked from MineClone5/MineClone5
Update longdesc for mundane and thick potions
This commit is contained in:
parent
787769cb92
commit
2b4b37a439
|
@ -248,7 +248,6 @@ local function register_potion(def)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local awkward_def = {
|
local awkward_def = {
|
||||||
name = "awkward",
|
name = "awkward",
|
||||||
description = "Awkward Potion",
|
description = "Awkward Potion",
|
||||||
|
@ -263,7 +262,7 @@ local mundane_def = {
|
||||||
name = "mundane",
|
name = "mundane",
|
||||||
description = "Mundane Potion",
|
description = "Mundane Potion",
|
||||||
_tt = S("No effect"),
|
_tt = S("No effect"),
|
||||||
longdesc = S("Has a clean taste and is used for brewing potions."),
|
longdesc = S("Has a terrible taste and is not useful for brewing potions."),
|
||||||
color = "#0000FF",
|
color = "#0000FF",
|
||||||
on_use = minetest.item_eat(0, "mcl_potions:glass_bottle"),
|
on_use = minetest.item_eat(0, "mcl_potions:glass_bottle"),
|
||||||
}
|
}
|
||||||
|
@ -272,7 +271,7 @@ local thick_def = {
|
||||||
name = "thick",
|
name = "thick",
|
||||||
description = "Thick Potion",
|
description = "Thick Potion",
|
||||||
_tt = S("No effect"),
|
_tt = S("No effect"),
|
||||||
_longdesc = S("Has a bitter taste and is used for brewing potions."),
|
_longdesc = S("Has a bitter taste and is not useful for brewing potions."),
|
||||||
color = "#0000FF",
|
color = "#0000FF",
|
||||||
on_use = minetest.item_eat(0, "mcl_potions:glass_bottle"),
|
on_use = minetest.item_eat(0, "mcl_potions:glass_bottle"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue