Skip to content
Snippets Groups Projects
Commit fb679d1b authored by Otowa Kotori's avatar Otowa Kotori
Browse files

fixed some tooltipDisplayAtMap

parent f830af5c
No related branches found
No related tags found
2 merge requests!627I18n,!617WIP: experienmental i18n support
......@@ -260,9 +260,9 @@ function _M:mouseIcon(bx, by)
key = game.key.binds_remap[virtual] ~= nil and game.key.binds_remap[virtual][1] or game.key:findBoundKeys(virtual)
key = (key ~= nil and game.key:formatKeyString(key) or "unbound"):capitalize()
if (not game.show_npc_list) then
game:tooltipDisplayAtMap(game.w, game.h, "Displaying talents (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for creature display":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Displaying talents (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for creature display"):tformat(key))
else
game:tooltipDisplayAtMap(game.w, game.h, "Displaying creatures (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for talent display#":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Displaying creatures (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for talent display#"):tformat(key))
end
elseif bx < 2*_talents_icon_w then
virtual = "SHOW_INVENTORY"
......@@ -271,7 +271,7 @@ function _M:mouseIcon(bx, by)
if (key == "I") then
game:tooltipDisplayAtMap(game.w, game.h, _t"#{bold}##GOLD#I#LAST##{normal}#nventory")
else
game:tooltipDisplayAtMap(game.w, game.h, "Inventory (#{bold}##GOLD#%s#LAST##{normal}#)":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Inventory (#{bold}##GOLD#%s#LAST##{normal}#)"):tformat(key))
end
elseif bx < 3*_talents_icon_w then
virtual = "SHOW_CHARACTER_SHEET"
......@@ -280,26 +280,26 @@ function _M:mouseIcon(bx, by)
if (key == "C") then
game:tooltipDisplayAtMap(game.w, game.h, _t"#{bold}##GOLD#C#LAST##{normal}#haracter Sheet")
else
game:tooltipDisplayAtMap(game.w, game.h, "Character Sheet (#{bold}##GOLD#%s#LAST##{normal}#)":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Character Sheet (#{bold}##GOLD#%s#LAST##{normal}#)"):tformat(key))
end
elseif bx < 4*_talents_icon_w then
virtual = "EXIT"
key = game.key.binds_remap[virtual] ~= nil and game.key.binds_remap[virtual][1] or game.key:findBoundKeys(virtual)
key = (key ~= nil and game.key:formatKeyString(key) or "unbound"):capitalize()
game:tooltipDisplayAtMap(game.w, game.h, "Main menu (#{bold}##GOLD#%s#LAST##{normal}#)":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Main menu (#{bold}##GOLD#%s#LAST##{normal}#)"):tformat(key))
elseif bx < 5*_talents_icon_w then
virtual = "SHOW_MESSAGE_LOG"
key = game.key.binds_remap[virtual] ~= nil and game.key.binds_remap[virtual][1] or game.key:findBoundKeys(virtual)
key = (key ~= nil and game.key:formatKeyString(key) or "unbound"):capitalize()
game:tooltipDisplayAtMap(game.w, game.h, "Show message/chat log (#{bold}##GOLD#%s#LAST##{normal}#)":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Show message/chat log (#{bold}##GOLD#%s#LAST##{normal}#)"):tformat(key))
elseif bx < 6*_talents_icon_w then
virtual = "TOGGLE_BUMP_ATTACK"
key = game.key.binds_remap[virtual] ~= nil and game.key.binds_remap[virtual][1] or game.key:findBoundKeys(virtual)
key = (key ~= nil and game.key:formatKeyString(key) or "unbound"):capitalize()
if (not config.settings.tome.actor_based_movement_mode and not self.bump_attack_disabled) or (config.settings.tome.actor_based_movement_mode and not game.player.bump_attack_disabled) then
game:tooltipDisplayAtMap(game.w, game.h, "Movement: #LIGHT_GREEN#Default#LAST# (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for passive mode":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Movement: #LIGHT_GREEN#Default#LAST# (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for passive mode"):tformat(key))
else
game:tooltipDisplayAtMap(game.w, game.h, "Movement: #LIGHT_RED#Passive#LAST# (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for default mode":tformat(key))
game:tooltipDisplayAtMap(game.w, game.h, ("Movement: #LIGHT_RED#Passive#LAST# (#{bold}##GOLD#%s#LAST##{normal}#)\nToggle for default mode"):tformat(key))
end
end
else
......@@ -310,7 +310,7 @@ function _M:mouseIcon(bx, by)
virtual2 = "MTXN_USE"
key2 = game.key.binds_remap[virtual2] ~= nil and game.key.binds_remap[virtual2][1] or game.key:findBoundKeys(virtual2)
key2 = (key2 ~= nil and game.key:formatKeyString(key2) or "unbound"):capitalize()
game:tooltipDisplayAtMap(game.w, game.h, "Cosmetics & Events shop (#{bold}##GOLD#"..key.."#LAST##{normal}#, #{bold}##GOLD#"..key2.."#LAST##{normal}#)")
game:tooltipDisplayAtMap(game.w, game.h, ("Cosmetics & Events shop (#{bold}##GOLD#%s#LAST##{normal}#, #{bold}##GOLD#%s#LAST##{normal}#)"):tformat(key, key2))
end
end
end
......
......@@ -52,7 +52,7 @@ local function generate_tools()
on_select=function(npc, player)
local mastery = nil
game.tooltip_x, game.tooltip_y = 1, 1
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..m_t.name.."#LAST#\n"..tostring(player:getTalentFullDescription(m_t, nil, {force_level=chat_level}, mastery)))
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%s#LAST#\n%s"):tformat(m_t.nam, tostring(player:getTalentFullDescription(m_t, nil, {force_level=chat_level}, mastery))))
end,
}
end
......
......@@ -86,7 +86,7 @@ local function generate_tools()
else
text = player:getTalentFullDescription(t, nil, {force_level=chat_level})
end
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..t.name.."#LAST#\n"..tostring(text))
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%s#LAST#\n%s"):tformat(t.name, tostring(text)))
end,
}
end
......
......@@ -279,7 +279,7 @@ local function generate_rewards()
game.tooltip_x, game.tooltip_y = 1, 1
local mastery = nil
if player:knowTalentType(t.type[1]) == nil then mastery = 1.0 end
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..t.name.."#LAST#\n"..tostring(player:getTalentFullDescription(t, 1, nil, mastery)))
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%sLAST#\n%s"):tformat(t.name,tostring(player:getTalentFullDescription(t, 1, nil, mastery))))
end,
}
end
......@@ -299,7 +299,7 @@ local function generate_rewards()
action=doit,
on_select=function(npc, player)
game.tooltip_x, game.tooltip_y = 1, 1
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..(cat:capitalize().." / "..tt_def.name:capitalize()).."#LAST#\n"..tt_def.description)
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%s / %s#LAST#\n%s"):tformat(cat:capitalize(), tt_def.name:capitalize(), tt_def.description))
end,
}
end end
......
......@@ -34,7 +34,7 @@ for i = 1, player.max_inscriptions do
player:removeObject(inven, item)
end, on_select=function(npc, player)
game.tooltip_x, game.tooltip_y = 1, 1
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..t.name.."#LAST#\n"..tostring(player:getTalentFullDescription(t)))
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%s#LAST#\n%s"):tformat(t.name,tostring(player:getTalentFullDescription(t))))
end, }
end
end
......
......@@ -56,7 +56,7 @@ local function generate_traps()
local mastery = nil
game.tooltip_x, game.tooltip_y = 1, 1
player.turn_procs.trap_mastery_tid = chat_talent.id
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..t.name.."#LAST#\n"..tostring(player:getTalentFullDescription(t, 1, {force_level=1})))
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%s#LAST#\n%s"):tformat(t.name, tostring(player:getTalentFullDescription(t, 1, {force_level=1}))))
player.turn_procs.trap_mastery_tid = nil
end,
}
......
......@@ -57,7 +57,7 @@ local function generate_rewards()
action=doit,
on_select=function(npc, player)
game.tooltip_x, game.tooltip_y = 1, 1
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..(cat:capitalize().." / "..tt_def.name:capitalize()).."#LAST#\n"..tt_def.description)
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%s / %s#LAST#\n"):tformat(cat:capitalize(), tt_def.name:capitalize(), tt_def.description))
end,
}
end end
......
......@@ -62,7 +62,7 @@ function _M:init(title, actor, text, dialog_talent, max_traps, trap_tids)
c_list.on_select = function(item)
if item.talent then
actor.turn_procs.trap_mastery_tid = dialog_talent.id
game:tooltipDisplayAtMap(game.w, game.h, "#GOLD#"..item.talent.name.."#LAST#\n"..tostring(actor:getTalentFullDescription(item.talent, 1, {force_level=1})))
game:tooltipDisplayAtMap(game.w, game.h, ("#GOLD#%sLAST#\n%s"):tformat(item.talent.name, tostring(actor:getTalentFullDescription(item.talent, 1, {force_level=1}))))
actor.turn_procs.trap_mastery_tid = nil
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment