Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
96b8369500 | |||
03ad38cfb3 | |||
cad216468a |
@ -226,7 +226,11 @@ GNU Lesser General Public License v2.1 or later (see included LICENSE file)
|
|||||||
- x_enchanting_scroll_mesh.png -- Derived from a texture TumeniNodes (CC BY-SA 3.0)
|
- x_enchanting_scroll_mesh.png -- Derived from a texture TumeniNodes (CC BY-SA 3.0)
|
||||||
- x_enchanting_scroll_particle.png
|
- x_enchanting_scroll_particle.png
|
||||||
- x_enchanting_table.png
|
- x_enchanting_table.png
|
||||||
- x_enchanting_trade_slot.png
|
- x_enchanting_gui_slot_bg.png -- Derived from texture Pixel Perfection by XSSheep (CC BY-SA 4.0)
|
||||||
|
- x_enchanting_gui_cloth_bg.png -- Derived from texture Pixel Perfection by XSSheep (CC BY-SA 4.0)
|
||||||
|
- x_enchanting_gui_cloth_trade_bg.png -- Derived from texture Pixel Perfection by XSSheep (CC BY-SA 4.0)
|
||||||
|
- x_enchanting_gui_formbg.png -- Derived from texture Pixel Perfection by XSSheep (CC BY-SA 4.0)
|
||||||
|
- x_enchanting_gui_hb_bg.png -- Derived from texture Pixel Perfection by XSSheep (CC BY-SA 4.0)
|
||||||
|
|
||||||
### Models
|
### Models
|
||||||
|
|
||||||
|
117
api.lua
@ -1,5 +1,3 @@
|
|||||||
default = minetest.global_exists('default') and default --[[@as MtgDefault]]
|
|
||||||
|
|
||||||
local S = minetest.get_translator(minetest.get_current_modname())
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
---@type XEnchanting
|
---@type XEnchanting
|
||||||
@ -475,7 +473,7 @@ function XEnchanting.get_enchanted_descriptions(self, enchantments)
|
|||||||
|
|
||||||
enchantments_desc = '\n' .. minetest.colorize('#AE81FF', S('Enchanted'))
|
enchantments_desc = '\n' .. minetest.colorize('#AE81FF', S('Enchanted'))
|
||||||
.. '\n' .. table.concat(enchantments_desc, '\n')
|
.. '\n' .. table.concat(enchantments_desc, '\n')
|
||||||
enchantments_desc_masked = table.concat(enchantments_desc_masked, '') .. '...?'
|
enchantments_desc_masked = table.concat(enchantments_desc_masked, '') .. '..?'
|
||||||
|
|
||||||
return {
|
return {
|
||||||
enchantments_desc = enchantments_desc,
|
enchantments_desc = enchantments_desc,
|
||||||
@ -536,6 +534,58 @@ function XEnchanting.set_enchanted_tool(self, pos, itemstack, level, player_name
|
|||||||
pos = pos,
|
pos = pos,
|
||||||
max_hear_distance = 10
|
max_hear_distance = 10
|
||||||
}, true)
|
}, true)
|
||||||
|
|
||||||
|
-- particles
|
||||||
|
local particlespawner_def = {
|
||||||
|
amount = 50,
|
||||||
|
time = 0.5,
|
||||||
|
minpos = { x = pos.x - 1, y = pos.y + 1, z = pos.z - 1 },
|
||||||
|
maxpos = { x = pos.x + 1, y = pos.y + 1.5, z = pos.z + 1 },
|
||||||
|
minvel = { x = -0.1, y = -0.5, z = -0.1 },
|
||||||
|
maxvel = { x = 0.1, y = -1.5, z = 0.1 },
|
||||||
|
minacc = { x = -0.1, y = -0.5, z = -0.1 },
|
||||||
|
maxacc = { x = 0.1, y = -1.5, z = 0.1 },
|
||||||
|
minexptime = 0.5,
|
||||||
|
maxexptime = 1,
|
||||||
|
minsize = 0.5,
|
||||||
|
maxsize = 1,
|
||||||
|
texture = 'x_enchanting_scroll_particle.png^[colorize:#A179E9:256',
|
||||||
|
glow = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if minetest.has_feature({ dynamic_add_media_table = true, particlespawner_tweenable = true }) then
|
||||||
|
-- new syntax, after v5.6.0
|
||||||
|
particlespawner_def = {
|
||||||
|
amount = 50,
|
||||||
|
time = 0.5,
|
||||||
|
size = {
|
||||||
|
min = 0.5,
|
||||||
|
max = 1,
|
||||||
|
},
|
||||||
|
exptime = 2,
|
||||||
|
pos = {
|
||||||
|
min = vector.new({ x = pos.x - 1.5, y = pos.y + 1, z = pos.z - 1.5 }),
|
||||||
|
max = vector.new({ x = pos.x + 1.5, y = pos.y + 1.5, z = pos.z + 1.5 }),
|
||||||
|
},
|
||||||
|
attract = {
|
||||||
|
kind = 'point',
|
||||||
|
strength = 2,
|
||||||
|
origin = vector.new({ x = pos.x, y = pos.y + 0.65, z = pos.z }),
|
||||||
|
die_on_contact = true
|
||||||
|
},
|
||||||
|
texture = {
|
||||||
|
name = 'x_enchanting_scroll_particle.png^[colorize:#A179E9:256',
|
||||||
|
alpha_tween = {
|
||||||
|
0.5, 1,
|
||||||
|
style = 'fwd',
|
||||||
|
reps = 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
glow = 1
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
minetest.add_particlespawner(particlespawner_def)
|
||||||
end
|
end
|
||||||
|
|
||||||
function XEnchanting.get_enchantment_data(self, player, nr_of_bookshelfs, tool_def)
|
function XEnchanting.get_enchantment_data(self, player, nr_of_bookshelfs, tool_def)
|
||||||
@ -743,6 +793,39 @@ function XEnchanting.get_enchantment_data(self, player, nr_of_bookshelfs, tool_d
|
|||||||
return data
|
return data
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function get_hotbar_bg(x, y)
|
||||||
|
local out = ''
|
||||||
|
|
||||||
|
for i = 0, 7, 1 do
|
||||||
|
out = out .. 'image[' .. x + i .. ',' .. y .. ';1,1;x_enchanting_gui_hb_bg.png]'
|
||||||
|
end
|
||||||
|
|
||||||
|
return out
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_list_bg(x, y)
|
||||||
|
local out = ''
|
||||||
|
|
||||||
|
for row = 0, 2, 1 do
|
||||||
|
for i = 0, 7, 1 do
|
||||||
|
out = out .. 'image[' .. x + i .. ',' .. y + row .. ';1,1;x_enchanting_gui_slot_bg.png]'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return out
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_formspec_bg(player_name)
|
||||||
|
local info = minetest.get_player_information(player_name)
|
||||||
|
local bg = 'background[5,5;1,1;x_enchanting_gui_formbg.png;true]'
|
||||||
|
|
||||||
|
if info.formspec_version > 1 then
|
||||||
|
bg = 'background9[5,5;1,1;x_enchanting_gui_formbg.png;true;10]'
|
||||||
|
end
|
||||||
|
|
||||||
|
return bg
|
||||||
|
end
|
||||||
|
|
||||||
function XEnchanting.get_formspec(self, pos, player_name, data)
|
function XEnchanting.get_formspec(self, pos, player_name, data)
|
||||||
local spos = pos.x .. ',' .. pos.y .. ',' .. pos.z
|
local spos = pos.x .. ',' .. pos.y .. ',' .. pos.z
|
||||||
local inv = minetest.get_meta(pos):get_inventory()
|
local inv = minetest.get_meta(pos):get_inventory()
|
||||||
@ -754,21 +837,29 @@ function XEnchanting.get_formspec(self, pos, player_name, data)
|
|||||||
|
|
||||||
local formspec = {
|
local formspec = {
|
||||||
'size[8,9]',
|
'size[8,9]',
|
||||||
|
'bgcolor[#080808BB;true]',
|
||||||
|
'listcolors[#FFFFFF00;#FFFFFF1A;#FFFFFF00;#30434C;#FFF]',
|
||||||
|
get_formspec_bg(player_name),
|
||||||
|
'style_type[label;font=mono,bold]',
|
||||||
|
'style[slot_1,slot_2,slot_3;font=mono,bold;textcolor=#4D413A]',
|
||||||
'label[0, 0;' .. S('Enchant') .. ']',
|
'label[0, 0;' .. S('Enchant') .. ']',
|
||||||
|
-- item
|
||||||
'list[nodemeta:' .. spos .. ';item;0, 2.5;1, 1;]',
|
'list[nodemeta:' .. spos .. ';item;0, 2.5;1, 1;]',
|
||||||
'image[1,2.5;1,1;x_enchanting_trade_slot.png;]',
|
'image[0, 2.5;1,1;x_enchanting_gui_cloth_bg.png]',
|
||||||
|
-- trade
|
||||||
'list[nodemeta:' .. spos .. ';trade;1, 2.5;1, 1;]',
|
'list[nodemeta:' .. spos .. ';trade;1, 2.5;1, 1;]',
|
||||||
|
'image[1, 2.5;1,1;x_enchanting_gui_cloth_trade_bg.png]',
|
||||||
|
-- inventories
|
||||||
'list[current_player;main;0, 4.85;8, 1;]',
|
'list[current_player;main;0, 4.85;8, 1;]',
|
||||||
'list[current_player;main;0, 6.08;8, 3;8]',
|
'list[current_player;main;0, 6.08;8, 3;8]',
|
||||||
'listring[nodemeta:' .. spos .. ';trade]',
|
'listring[nodemeta:' .. spos .. ';trade]',
|
||||||
'listring[current_player;main]',
|
'listring[current_player;main]',
|
||||||
'listring[nodemeta:' .. spos .. ';item]',
|
'listring[nodemeta:' .. spos .. ';item]',
|
||||||
'listring[current_player;main]'
|
'listring[current_player;main]',
|
||||||
}
|
}
|
||||||
|
|
||||||
if default then
|
formspec[#formspec + 1] = get_hotbar_bg(0, 4.85)
|
||||||
formspec[#formspec + 1] = default.get_hotbar_bg(0, 4.85)
|
formspec[#formspec + 1] = get_list_bg(0, 6.08)
|
||||||
end
|
|
||||||
|
|
||||||
-- data
|
-- data
|
||||||
if data then
|
if data then
|
||||||
@ -778,17 +869,17 @@ function XEnchanting.get_formspec(self, pos, player_name, data)
|
|||||||
|
|
||||||
if inv:get_stack('trade', 1):get_count() >= i then
|
if inv:get_stack('trade', 1):get_count() >= i then
|
||||||
---@diagnostic disable-next-line: codestyle-check
|
---@diagnostic disable-next-line: codestyle-check
|
||||||
formspec[#formspec + 1] = 'image_button[2.5,' .. -0.5 + i .. ';5,1;x_enchanting_image_button.png;slot_' .. i .. ';' .. slot.descriptions.enchantments_desc_masked .. ' ' .. minetest.colorize('#FFFF00', S('level') .. ': ' .. slot.level) .. ']'
|
formspec[#formspec + 1] = 'image_button[3.125,' .. -0.5 + i .. ';5.125,1;x_enchanting_image_button.png;slot_' .. i .. ';' .. slot.descriptions.enchantments_desc_masked .. minetest.formspec_escape(' [' .. slot.level .. ']') .. ']'
|
||||||
else
|
else
|
||||||
---@diagnostic disable-next-line: codestyle-check
|
---@diagnostic disable-next-line: codestyle-check
|
||||||
formspec[#formspec + 1] = 'image_button[2.5,' .. -0.5 + i .. ';5,1;x_enchanting_image_button_disabled.png;slot_' .. i .. ';' .. slot.descriptions.enchantments_desc_masked .. ' ' .. minetest.colorize('#FFFF00', S('level') .. ': ' .. slot.level) .. ']'
|
formspec[#formspec + 1] = 'image_button[3.125,' .. -0.5 + i .. ';5.125,1;x_enchanting_image_button_disabled.png;slot_' .. i .. ';' .. slot.descriptions.enchantments_desc_masked .. minetest.formspec_escape(' [' .. slot.level .. ']') .. ']'
|
||||||
end
|
end
|
||||||
|
|
||||||
formspec[#formspec + 1] = 'image[2.5,' .. -0.5 + i .. ';1,1;x_enchanting_image_trade_' .. i .. '.png;]'
|
formspec[#formspec + 1] = 'image[2.3,' .. -0.5 + i .. ';1,1;x_enchanting_image_trade_' .. i .. '.png;]'
|
||||||
else
|
else
|
||||||
-- disabled buttons
|
-- disabled buttons
|
||||||
---@diagnostic disable-next-line: codestyle-check
|
---@diagnostic disable-next-line: codestyle-check
|
||||||
formspec[#formspec + 1] = 'image_button[2.5,' .. -0.5 + i .. ';5,1;x_enchanting_image_button_disabled.png;slot_' .. i .. ';]'
|
formspec[#formspec + 1] = 'image_button[3.125,' .. -0.5 + i .. ';5.125,1;x_enchanting_image_button_disabled.png;slot_' .. i .. ';]'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -797,7 +888,7 @@ function XEnchanting.get_formspec(self, pos, player_name, data)
|
|||||||
for i = 1, 3, 1 do
|
for i = 1, 3, 1 do
|
||||||
-- disabled buttons
|
-- disabled buttons
|
||||||
---@diagnostic disable-next-line: codestyle-check
|
---@diagnostic disable-next-line: codestyle-check
|
||||||
formspec[#formspec + 1] = 'image_button[2.5,' .. -0.5 + i .. ';5,1;x_enchanting_image_button_disabled.png;slot_' .. i .. ';]'
|
formspec[#formspec + 1] = 'image_button[3.125,' .. -0.5 + i .. ';5.125,1;x_enchanting_image_button_disabled.png;slot_' .. i .. ';]'
|
||||||
end
|
end
|
||||||
|
|
||||||
model_scroll_is_open = false
|
model_scroll_is_open = false
|
||||||
|
6
init.lua
@ -23,14 +23,14 @@ minetest.register_on_mods_loaded(function()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Ores override
|
-- Ores override - Fortune
|
||||||
for _, def in pairs(minetest.registered_ores) do
|
for _, def in pairs(minetest.registered_ores) do
|
||||||
if not XEnchanting.registered_ores[def.ore] then
|
if not XEnchanting.registered_ores[def.ore] then
|
||||||
XEnchanting.registered_ores[def.ore] = true
|
XEnchanting.registered_ores[def.ore] = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Entities override
|
-- Entities override - Looting
|
||||||
for name, def in pairs(minetest.registered_entities) do
|
for name, def in pairs(minetest.registered_entities) do
|
||||||
if starts_with(name, 'mobs_animal:')
|
if starts_with(name, 'mobs_animal:')
|
||||||
or starts_with(name, 'mobs_monster:')
|
or starts_with(name, 'mobs_monster:')
|
||||||
@ -74,7 +74,7 @@ minetest.register_on_mods_loaded(function()
|
|||||||
|
|
||||||
if death_by_player and pos then
|
if death_by_player and pos then
|
||||||
for _, drop in ipairs(def.drops) do
|
for _, drop in ipairs(def.drops) do
|
||||||
if math.random(1, 2) == 1 then
|
if math.random(10, 100) / 100 < looting / (looting + 1) then
|
||||||
local drop_min = drop.min or 0
|
local drop_min = drop.min or 0
|
||||||
local drop_max = drop.max or 0
|
local drop_max = drop.max or 0
|
||||||
local count = math.random(drop_min, drop_max)
|
local count = math.random(drop_min, drop_max)
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
# textdomain: x_enchanting
|
# textdomain: x_enchanting
|
||||||
Sharpness=
|
Sharpness=
|
||||||
|
Looting=
|
||||||
Fortune=
|
Fortune=
|
||||||
Unbreaking=
|
Unbreaking=
|
||||||
Efficiency=
|
Efficiency=
|
||||||
Silk Touch=
|
Silk Touch=
|
||||||
Curse of Vanishing=
|
Curse of Vanishing=
|
||||||
Knockback=
|
Knockback=
|
||||||
|
Power=
|
||||||
|
Punch=
|
||||||
|
Infinity=
|
||||||
Enchanted=
|
Enchanted=
|
||||||
Enchant=
|
Enchant=
|
||||||
level=
|
|
||||||
Enchanting Table=
|
Enchanting Table=
|
||||||
owned by=
|
owned by=
|
||||||
Scroll of Enchantments=
|
Scroll of Enchantments=
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
# textdomain: x_enchanting
|
# textdomain: x_enchanting
|
||||||
Sharpness=Ostrosť
|
Sharpness=Ostrosť
|
||||||
|
Looting=
|
||||||
Fortune=Šťastie
|
Fortune=Šťastie
|
||||||
Unbreaking=Nelámavosť
|
Unbreaking=Nelámavosť
|
||||||
Efficiency=Výkonnosť
|
Efficiency=Výkonnosť
|
||||||
Silk Touch=Hodvábny dotyk
|
Silk Touch=Hodvábny dotyk
|
||||||
Curse of Vanishing=Kliatba zmiznutia
|
Curse of Vanishing=Kliatba zmiznutia
|
||||||
Knockback=Spätný úder
|
Knockback=Spätný úder
|
||||||
|
Power=
|
||||||
|
Punch=
|
||||||
|
Infinity=
|
||||||
Enchanted=Očarený
|
Enchanted=Očarený
|
||||||
Enchant=Očarovať
|
Enchant=Očarovať
|
||||||
level=level
|
|
||||||
Enchanting Table=Čarovný stôl
|
Enchanting Table=Čarovný stôl
|
||||||
owned by=vlastník
|
owned by=vlastník
|
||||||
Scroll of Enchantments=Čarovný Zvitok
|
Scroll of Enchantments=Čarovný Zvitok
|
||||||
|
BIN
screenshot.3.png
Before Width: | Height: | Size: 181 KiB After Width: | Height: | Size: 385 KiB |
BIN
textures/x_enchanting_gui_cloth_bg.png
Normal file
After Width: | Height: | Size: 112 B |
BIN
textures/x_enchanting_gui_cloth_trade_bg.png
Normal file
After Width: | Height: | Size: 165 B |
BIN
textures/x_enchanting_gui_formbg.png
Normal file
After Width: | Height: | Size: 935 B |
BIN
textures/x_enchanting_gui_hb_bg.png
Normal file
After Width: | Height: | Size: 117 B |
BIN
textures/x_enchanting_gui_slot_bg.png
Normal file
After Width: | Height: | Size: 118 B |
Before Width: | Height: | Size: 108 B After Width: | Height: | Size: 108 B |
Before Width: | Height: | Size: 109 B After Width: | Height: | Size: 109 B |
Before Width: | Height: | Size: 172 B After Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 201 B |
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 227 B |
Before Width: | Height: | Size: 109 B |
@ -93,6 +93,7 @@
|
|||||||
---@field handle_node_drops fun(pos: Vector, drops: string[], digger: ObjectRef) `drops`: list of itemstrings. Handles drops from nodes after digging: Default action is to put them into digger's inventory. Can be overridden to get different functionality (e.g. dropping items on ground)
|
---@field handle_node_drops fun(pos: Vector, drops: string[], digger: ObjectRef) `drops`: list of itemstrings. Handles drops from nodes after digging: Default action is to put them into digger's inventory. Can be overridden to get different functionality (e.g. dropping items on ground)
|
||||||
---@field register_on_dieplayer fun(func: fun(player: ObjectRef, reason?: string)): nil Called when a player dies. `reason`: a PlayerHPChangeReason table, see register_on_player_hpchange
|
---@field register_on_dieplayer fun(func: fun(player: ObjectRef, reason?: string)): nil Called when a player dies. `reason`: a PlayerHPChangeReason table, see register_on_player_hpchange
|
||||||
---@field register_on_player_hpchange fun(func: fun(player, hp_change, reason), modifier): number Called when the player gets damaged or healed. `player`: ObjectRef of the player. `hp_change`: the amount of change. Negative when it is damage.. `reason`: a PlayerHPChangeReason table.. The `type` field will have one of the following values: `set_hp`: A mod or the engine called `set_hp` without giving a type - use this for custom damage types.. `punch`: Was punched. `reason.object` will hold the puncher, or nil if none. `fall`, `node_damage`: `damage_per_second` from a neighbouring node. `reason.node` will hold the node name or nil. `drown` `respawn`. Any of the above types may have additional fields from mods. `reason.from` will be `mod` or `engine`. `modifier`: when true, the function should return the actual `hp_change`. Note: modifiers only get a temporary `hp_change` that can be modified by later modifiers. Modifiers can return true as a second argument to stop the execution of further functions. Non-modifiers receive the final HP change calculated by the modifiers.
|
---@field register_on_player_hpchange fun(func: fun(player, hp_change, reason), modifier): number Called when the player gets damaged or healed. `player`: ObjectRef of the player. `hp_change`: the amount of change. Negative when it is damage.. `reason`: a PlayerHPChangeReason table.. The `type` field will have one of the following values: `set_hp`: A mod or the engine called `set_hp` without giving a type - use this for custom damage types.. `punch`: Was punched. `reason.object` will hold the puncher, or nil if none. `fall`, `node_damage`: `damage_per_second` from a neighbouring node. `reason.node` will hold the node name or nil. `drown` `respawn`. Any of the above types may have additional fields from mods. `reason.from` will be `mod` or `engine`. `modifier`: when true, the function should return the actual `hp_change`. Note: modifiers only get a temporary `hp_change` that can be modified by later modifiers. Modifiers can return true as a second argument to stop the execution of further functions. Non-modifiers receive the final HP change calculated by the modifiers.
|
||||||
|
---@field get_player_information fun(player_name: string): table Table containing information about a player
|
||||||
|
|
||||||
---Minetest settings
|
---Minetest settings
|
||||||
---@class MinetestSettings
|
---@class MinetestSettings
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
---@field scroll_animations table<string, table> Parameters for `ObjectRef` `set_animation` method
|
---@field scroll_animations table<string, table> Parameters for `ObjectRef` `set_animation` method
|
||||||
---@field player_seeds table<string, number | integer>
|
---@field player_seeds table<string, number | integer>
|
||||||
---@field registered_ores table<string, boolean> Table with registered ores, `key` ore name
|
---@field registered_ores table<string, boolean> Table with registered ores, `key` ore name
|
||||||
|
---@field settings {["x_enchanting_small_formspec"]: boolean}
|
||||||
|
|
||||||
|
|
||||||
---Enchantment definition
|
---Enchantment definition
|
||||||
|