From 5e1d202ce3baa4fd712b8001e4276c06fbc60617 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Fri, 21 Dec 2012 10:28:38 +0000
Subject: [PATCH] Lore is now stored by the party instead of the player

git-svn-id: http://svn.net-core.org/repos/t-engine4@6175 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Actor.lua             |  2 +-
 game/modules/tome/class/Game.lua              |  2 +-
 game/modules/tome/class/Object.lua            | 12 +++---
 game/modules/tome/class/Party.lua             |  8 ++--
 game/modules/tome/class/Player.lua            |  3 --
 game/modules/tome/class/Store.lua             |  2 +-
 .../{PlayerLore.lua => PartyLore.lua}         |  0
 game/modules/tome/class/uiset/Minimalist.lua  |  2 +-
 game/modules/tome/data/achievements/lore.lua  | 39 +++++++++----------
 .../modules/tome/data/achievements/quests.lua |  2 +-
 .../data/chats/shertul-fortress-caldizar.lua  |  2 +-
 .../data/general/objects/lore/maj-eyal.lua    |  2 +-
 .../tome/data/general/objects/scrolls.lua     |  4 +-
 .../tome/data/maps/towns/last-hope.lua        |  8 ++--
 game/modules/tome/data/maps/towns/shatur.lua  |  2 +-
 game/modules/tome/data/quests/high-peak.lua   |  2 +-
 game/modules/tome/data/quests/keepsake.lua    | 22 +++++------
 .../tome/data/quests/shertul-fortress.lua     |  2 +-
 .../tome/data/quests/staff-absorption.lua     |  2 +-
 .../data/talents/corruptions/shadowflame.lua  |  2 +-
 .../tome/data/talents/psionic/slumber.lua     |  2 +-
 game/modules/tome/data/talents/uber/wil.lua   | 10 ++---
 .../data/zones/crypt-kryl-feijan/zone.lua     |  2 +-
 .../tome/data/zones/demon-plane/zone.lua      |  2 +-
 .../tome/data/zones/dreadfell/grids.lua       |  2 +-
 .../tome/data/zones/golem-graveyard/grids.lua |  2 +-
 .../tome/data/zones/lake-nur/grids.lua        |  2 +-
 .../data/zones/last-hope-graveyard/npcs.lua   |  8 ++--
 game/modules/tome/data/zones/reknor/grids.lua |  2 +-
 .../tome/data/zones/ruined-dungeon/grids.lua  |  2 +-
 .../data/zones/shertul-fortress/grids.lua     |  6 +--
 .../tome/data/zones/town-elvala/objects.lua   |  2 +-
 .../data/zones/town-last-hope/objects.lua     |  2 +-
 .../tome/data/zones/town-zigur/grids.lua      |  2 +-
 game/modules/tome/dialogs/ShowLore.lua        |  2 +-
 game/modules/tome/load.lua                    |  4 +-
 36 files changed, 84 insertions(+), 88 deletions(-)
 rename game/modules/tome/class/interface/{PlayerLore.lua => PartyLore.lua} (100%)

diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 9b9efb0e7e..554973f94c 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -2166,7 +2166,7 @@ function _M:die(src, death_note)
 
 	if self.tier1 then game.state:tier1Kill() end
 
-	if self.on_death_lore then game.player:learnLore(self.on_death_lore) end
+	if self.on_death_lore then game.party:learnLore(self.on_death_lore) end
 
 	-- Do we get a blooooooody death ?
 	if rng.percent(33) then self:bloodyDeath() end
diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index 00c7696024..a9da6f08b1 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -1543,7 +1543,7 @@ do return end
 			local l = {
 				"resume",
 				"achievements",
-				{ "Show known Lore", function() self:unregisterDialog(menu) self:registerDialog(require("mod.dialogs.ShowLore").new("Tales of Maj'Eyal Lore", self.player)) end },
+				{ "Show known Lore", function() self:unregisterDialog(menu) self:registerDialog(require("mod.dialogs.ShowLore").new("Tales of Maj'Eyal Lore", self.party)) end },
 				{ "Show ingredients", function() self:unregisterDialog(menu) self:registerDialog(require("mod.dialogs.ShowIngredients").new(self.party)) end },
 				"highscores",
 				{ "Inventory", function() self:unregisterDialog(menu) self.key:triggerVirtual("SHOW_INVENTORY") end },
diff --git a/game/modules/tome/class/Object.lua b/game/modules/tome/class/Object.lua
index df1443bcaa..b172064aae 100644
--- a/game/modules/tome/class/Object.lua
+++ b/game/modules/tome/class/Object.lua
@@ -1487,12 +1487,12 @@ function _M:on_prepickup(who, idx)
 	end
 	if who.player and self.lore then
 		game.level.map:removeObject(who.x, who.y, idx)
-		who:learnLore(self.lore)
+		game.party:learnLore(self.lore)
 		return true
 	end
 	if who.player and self.force_lore_artifact then
-		game.player:additionalLore(self.unique, self:getName(), "artifacts", self.desc)
-		game.player:learnLore(self.unique)
+		game.party:additionalLore(self.unique, self:getName(), "artifacts", self.desc)
+		game.party:learnLore(self.unique)
 	end
 end
 
@@ -1507,11 +1507,11 @@ end
 function _M:on_identify()
 	game:onTickEnd(function()
 		if self.on_id_lore then
-			game.player:learnLore(self.on_id_lore, false, false, true)
+			game.party:learnLore(self.on_id_lore, false, false, true)
 		end
 		if self.unique and self.desc and not self.no_unique_lore then
-			game.player:additionalLore(self.unique, self:getName{no_add_name=true, do_color=false, no_count=true}, "artifacts", self.desc)
-			game.player:learnLore(self.unique, false, false, true)
+			game.party:additionalLore(self.unique, self:getName{no_add_name=true, do_color=false, no_count=true}, "artifacts", self.desc)
+			game.party:learnLore(self.unique, false, false, true)
 		end
 	end)
 end
diff --git a/game/modules/tome/class/Party.lua b/game/modules/tome/class/Party.lua
index 57733f8294..c563649cc8 100644
--- a/game/modules/tome/class/Party.lua
+++ b/game/modules/tome/class/Party.lua
@@ -24,16 +24,18 @@ local Dialog = require "engine.ui.Dialog"
 local GetQuantity = require "engine.dialogs.GetQuantity"
 local PartyOrder = require "mod.dialogs.PartyOrder"
 local PartyIngredients = require "mod.class.interface.PartyIngredients"
+local PartyLore = require "mod.class.interface.PartyLore"
 local PartyRewardSelector = require "mod.dialogs.PartyRewardSelector"
 
 module(..., package.seeall, class.inherit(
-	engine.Entity, PartyIngredients
+	engine.Entity, PartyIngredients, PartyLore
 ))
 
 function _M:init(t, no_default)
 	t.name = t.name or "party"
 	engine.Entity.init(self, t, no_default)
 	PartyIngredients.init(self, t)
+	PartyLore.init(self, t)
 
 	self.members = {}
 	self.m_list = {}
@@ -201,8 +203,8 @@ function _M:setPlayer(actor, bypass)
 	if actor == game.player then return true end
 
 	-- Stop!!
-	if game.player.runStop then game.player:runStop("Switching control") end
-	if game.player.restStop then game.player:restStop("Switching control") end
+	if game.player and game.player.runStop then game.player:runStop("Switching control") end
+	if game.player and game.player.restStop then game.player:restStop("Switching control") end
 
 	local def = self.members[actor]
 	local oldp = self.player
diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua
index 392930a3ba..40cf930ac3 100644
--- a/game/modules/tome/class/Player.lua
+++ b/game/modules/tome/class/Player.lua
@@ -25,7 +25,6 @@ require "engine.interface.PlayerHotkeys"
 require "engine.interface.PlayerSlide"
 require "engine.interface.PlayerMouse"
 require "mod.class.interface.PlayerStats"
-require "mod.class.interface.PlayerLore"
 require "mod.class.interface.PlayerDumpJSON"
 require "mod.class.interface.PlayerExplore"
 require "mod.class.interface.PartyDeath"
@@ -44,7 +43,6 @@ module(..., package.seeall, class.inherit(
 	engine.interface.PlayerMouse,
 	engine.interface.PlayerSlide,
 	mod.class.interface.PlayerStats,
-	mod.class.interface.PlayerLore,
 	mod.class.interface.PlayerDumpJSON,
 	mod.class.interface.PlayerExplore,
 	mod.class.interface.PartyDeath
@@ -85,7 +83,6 @@ function _M:init(t, no_default)
 
 	mod.class.Actor.init(self, t, no_default)
 	engine.interface.PlayerHotkeys.init(self, t)
-	mod.class.interface.PlayerLore.init(self, t)
 
 	self.descriptor = self.descriptor or {}
 	self.died_times = self.died_times or {}
diff --git a/game/modules/tome/class/Store.lua b/game/modules/tome/class/Store.lua
index f8fda47645..48564b5542 100644
--- a/game/modules/tome/class/Store.lua
+++ b/game/modules/tome/class/Store.lua
@@ -163,7 +163,7 @@ function _M:doBuy(who, o, item, nb, store_dialog)
 			-- Learn lore ?
 			if who.player and o.lore then
 				self:removeObject(self:getInven("INVEN"), item)
-				who:learnLore(o.lore)
+				game.party:learnLore(o.lore)
 			else
 				self:transfer(self, who, item, nb)
 			end
diff --git a/game/modules/tome/class/interface/PlayerLore.lua b/game/modules/tome/class/interface/PartyLore.lua
similarity index 100%
rename from game/modules/tome/class/interface/PlayerLore.lua
rename to game/modules/tome/class/interface/PartyLore.lua
diff --git a/game/modules/tome/class/uiset/Minimalist.lua b/game/modules/tome/class/uiset/Minimalist.lua
index 1a861c64c1..be1e0ace0e 100644
--- a/game/modules/tome/class/uiset/Minimalist.lua
+++ b/game/modules/tome/class/uiset/Minimalist.lua
@@ -1819,7 +1819,7 @@ function _M:displayToolbar(scale, bx, by)
 			if event == "out" then self.tbbuttons.lore = 0.6 return else self.tbbuttons.lore = 1 end
 			game.tooltip_x, game.tooltip_y = 1, 1; game:tooltipDisplayAtMap(game.w, game.h, "Left mouse to show quest log.\nRight mouse to show all known lore.")
 			if button == "left" and not xrel and not yrel and event == "button" then game.key:triggerVirtual("SHOW_QUESTS")
-			elseif button == "right" and not xrel and not yrel and event == "button" then game:registerDialog(require("mod.dialogs.ShowLore").new("Tales of Maj'Eyal Lore", game.player)) end
+			elseif button == "right" and not xrel and not yrel and event == "button" then game:registerDialog(require("mod.dialogs.ShowLore").new("Tales of Maj'Eyal Lore", game.party)) end
 		end
 		game.mouse:registerZone(bx + x * scale, by +y*scale, tb_lore[6], tb_lore[7], desc_fct, nil, "tb_lore", true, scale)
 	end
diff --git a/game/modules/tome/data/achievements/lore.lua b/game/modules/tome/data/achievements/lore.lua
index f2ac9efc9d..854e3847e1 100644
--- a/game/modules/tome/data/achievements/lore.lua
+++ b/game/modules/tome/data/achievements/lore.lua
@@ -23,15 +23,14 @@ newAchievement{
 	show = "full",
 	mode = "player",
 	can_gain = function(self, who, obj)
-		local p = game:getPlayer(true)
-		if not p:knownLore("spellblaze-chronicles-1") then return false end
-		if not p:knownLore("spellblaze-chronicles-2") then return false end
-		if not p:knownLore("spellblaze-chronicles-3") then return false end
-		if not p:knownLore("spellblaze-chronicles-4") then return false end
-		if not p:knownLore("spellblaze-chronicles-5") then return false end
-		if not p:knownLore("spellblaze-chronicles-6") then return false end
-		if not p:knownLore("spellblaze-chronicles-7") then return false end
-		if not p:knownLore("spellblaze-chronicles-8") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-1") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-2") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-3") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-4") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-5") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-6") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-7") then return false end
+		if not game.party:knownLore("spellblaze-chronicles-8") then return false end
 		return true
 	end
 }
@@ -42,12 +41,11 @@ newAchievement{
 	show = "full",
 	mode = "player",
 	can_gain = function(self, who, obj)
-		local p = game:getPlayer(true)
-		if not p:knownLore("garkul-history-1") then return false end
-		if not p:knownLore("garkul-history-2") then return false end
-		if not p:knownLore("garkul-history-3") then return false end
-		if not p:knownLore("garkul-history-4") then return false end
-		if not p:knownLore("garkul-history-5") then return false end
+		if not game.party:knownLore("garkul-history-1") then return false end
+		if not game.party:knownLore("garkul-history-2") then return false end
+		if not game.party:knownLore("garkul-history-3") then return false end
+		if not game.party:knownLore("garkul-history-4") then return false end
+		if not game.party:knownLore("garkul-history-5") then return false end
 		return true
 	end
 }
@@ -58,12 +56,11 @@ newAchievement{
 	show = "full",
 	mode = "player",
 	can_gain = function(self, who, obj)
-		local p = game:getPlayer(true)
-		if not p:knownLore("orc-history-1") then return false end
-		if not p:knownLore("orc-history-2") then return false end
-		if not p:knownLore("orc-history-3") then return false end
-		if not p:knownLore("orc-history-4") then return false end
-		if not p:knownLore("orc-history-5") then return false end
+		if not game.party:knownLore("orc-history-1") then return false end
+		if not game.party:knownLore("orc-history-2") then return false end
+		if not game.party:knownLore("orc-history-3") then return false end
+		if not game.party:knownLore("orc-history-4") then return false end
+		if not game.party:knownLore("orc-history-5") then return false end
 		return true
 	end
 }
diff --git a/game/modules/tome/data/achievements/quests.lua b/game/modules/tome/data/achievements/quests.lua
index 924e670524..f324e852c9 100644
--- a/game/modules/tome/data/achievements/quests.lua
+++ b/game/modules/tome/data/achievements/quests.lua
@@ -61,7 +61,7 @@ newAchievement{
 	show = "name",
 	desc = [[Activated a portal using the Orb of Many Ways.]],
 	on_gain = function()
-		game:onTickEnd(function() game.player:learnLore("first-farportal") end)
+		game:onTickEnd(function() game.party:learnLore("first-farportal") end)
 	end
 }
 newAchievement{
diff --git a/game/modules/tome/data/chats/shertul-fortress-caldizar.lua b/game/modules/tome/data/chats/shertul-fortress-caldizar.lua
index a58b560e8f..d76c9cd7a1 100644
--- a/game/modules/tome/data/chats/shertul-fortress-caldizar.lua
+++ b/game/modules/tome/data/chats/shertul-fortress-caldizar.lua
@@ -42,7 +42,7 @@ A wave of mental and magical power blasts into you with the might of a falling s
 			local spot = game.level:pickSpot{type="spawn", subtype="farportal"} or {x=39, y=29}
 			game.player:move(spot.x, spot.y, true)
 			world:gainAchievement("CALDIZAR", game.player)
-			game.player:learnLore("shertul-fortress-caldizar")
+			game.party:learnLore("shertul-fortress-caldizar")
 		end},
 	}
 }
diff --git a/game/modules/tome/data/general/objects/lore/maj-eyal.lua b/game/modules/tome/data/general/objects/lore/maj-eyal.lua
index 969923a3cd..fc2a705b20 100644
--- a/game/modules/tome/data/general/objects/lore/maj-eyal.lua
+++ b/game/modules/tome/data/general/objects/lore/maj-eyal.lua
@@ -18,7 +18,7 @@
 -- darkgod@te4.org
 
 for i = 3, 10 do
-local l = mod.class.interface.PlayerLore.lore_defs["races-"..i]
+local l = mod.class.interface.PartyLore.lore_defs["races-"..i]
 newEntity{ base = "BASE_LORE_RANDOM",
 	define_as = "RACES_NOTE"..i,
 	subtype = "analysis", unique=true,
diff --git a/game/modules/tome/data/general/objects/scrolls.lua b/game/modules/tome/data/general/objects/scrolls.lua
index ed23607a51..546afa9372 100644
--- a/game/modules/tome/data/general/objects/scrolls.lua
+++ b/game/modules/tome/data/general/objects/scrolls.lua
@@ -103,7 +103,7 @@ newEntity{
 	unided_name = "scroll", identified=true,
 	display = "?", color=colors.ANTIQUE_WHITE, image="object/scroll-lore.png",
 	encumber = 0,
-	checkFilter = function(self) if self.lore and game:getPlayer(true).lore_known and game:getPlayer(true).lore_known[self.lore] then print('[LORE] refusing', self.lore) return false else return true end end,
+	checkFilter = function(self) if self.lore and game.party.lore_known and game.party.lore_known[self.lore] then print('[LORE] refusing', self.lore) return false else return true end end,
 	desc = [[This parchment contains some lore.]],
 }
 
@@ -113,7 +113,7 @@ newEntity{
 	unided_name = "scroll", identified=true,
 	display = "?", color=colors.ANTIQUE_WHITE, image="object/scroll.png",
 	encumber = 0,
-	checkFilter = function(self) if self.lore and game:getPlayer(true).lore_known and game:getPlayer(true).lore_known[self.lore] then print('[LORE] refusing', self.lore) return false else return true end end,
+	checkFilter = function(self) if self.lore and game.party.lore_known and game.party.lore_known[self.lore] then print('[LORE] refusing', self.lore) return false else return true end end,
 	desc = [[This parchment contains some lore.]],
 }
 
diff --git a/game/modules/tome/data/maps/towns/last-hope.lua b/game/modules/tome/data/maps/towns/last-hope.lua
index 301015d796..82252bc2ab 100644
--- a/game/modules/tome/data/maps/towns/last-hope.lua
+++ b/game/modules/tome/data/maps/towns/last-hope.lua
@@ -17,10 +17,10 @@
 -- Nicolas Casalini "DarkGod"
 -- darkgod@te4.org
 
-quickEntity('@', {show_tooltip=true, name="Statue of King Tolak the Fair", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/statue_tolak.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then e:learnLore("last-hope-tolak-statue") end return true end})
-quickEntity('Z', {show_tooltip=true, name="Statue of King Toknor the Brave", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/statue_toknor.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then e:learnLore("last-hope-toknor-statue") end return true end})
-quickEntity('Y', {show_tooltip=true, name="Statue of Queen Mirvenia the Inspirer", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/statue_mirvenia.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then e:learnLore("last-hope-mirvenia-statue") end return true end})
-quickEntity('X', {show_tooltip=true, name="Declaration of the Unification of the Allied Kingdoms", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/monument_allied_kingdoms.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then e:learnLore("last-hope-allied-kingdoms-foundation") end return true end})
+quickEntity('@', {show_tooltip=true, name="Statue of King Tolak the Fair", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/statue_tolak.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then game.party:learnLore("last-hope-tolak-statue") end return true end})
+quickEntity('Z', {show_tooltip=true, name="Statue of King Toknor the Brave", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/statue_toknor.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then game.party:learnLore("last-hope-toknor-statue") end return true end})
+quickEntity('Y', {show_tooltip=true, name="Statue of Queen Mirvenia the Inspirer", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/statue_mirvenia.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then game.party:learnLore("last-hope-mirvenia-statue") end return true end})
+quickEntity('X', {show_tooltip=true, name="Declaration of the Unification of the Allied Kingdoms", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statues/monument_allied_kingdoms.png", z=18, display_y=-1, display_h=2}}, color=colors.LIGHT_BLUE, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then game.party:learnLore("last-hope-allied-kingdoms-foundation") end return true end})
 
 -- defineTile section
 defineTile("<", "GRASS_UP_WILDERNESS")
diff --git a/game/modules/tome/data/maps/towns/shatur.lua b/game/modules/tome/data/maps/towns/shatur.lua
index b7f7f4c3ea..75251af526 100644
--- a/game/modules/tome/data/maps/towns/shatur.lua
+++ b/game/modules/tome/data/maps/towns/shatur.lua
@@ -25,7 +25,7 @@ defineTile('~', "DEEP_WATER")
 defineTile('.', "GRASS")
 defineTile('_', "COBBLESTONE")
 
-quickEntity('@', {show_tooltip=true, name="Moss covered statue", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statue3.png"}}, color=colors.GREEN, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then e:learnLore("thaloren-lament") end return true end})
+quickEntity('@', {show_tooltip=true, name="Moss covered statue", display='@', image="terrain/grass.png", add_displays = {mod.class.Grid.new{image="terrain/statue3.png"}}, color=colors.GREEN, block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then game.party:learnLore("thaloren-lament") end return true end})
 
 defineTile('2', "ROCKY_GROUND", nil, nil, "SWORD_WEAPON_STORE")
 defineTile('3', "ROCKY_GROUND", nil, nil, "MAUL_WEAPON_STORE")
diff --git a/game/modules/tome/data/quests/high-peak.lua b/game/modules/tome/data/quests/high-peak.lua
index ceaa327895..7ed1ee3972 100644
--- a/game/modules/tome/data/quests/high-peak.lua
+++ b/game/modules/tome/data/quests/high-peak.lua
@@ -113,7 +113,7 @@ end
 
 function win(self, how)
 	game:playAndStopMusic("Lords of the Sky.ogg")
-	game.player:learnLore("closing-farportal")
+	game.party:learnLore("closing-farportal")
 
 	if how == "full" then world:gainAchievement("WIN_FULL", game.player)
 	elseif how == "aeryn-sacrifice" then world:gainAchievement("WIN_AERYN", game.player)
diff --git a/game/modules/tome/data/quests/keepsake.lua b/game/modules/tome/data/quests/keepsake.lua
index 74ba390097..0071e562a1 100644
--- a/game/modules/tome/data/quests/keepsake.lua
+++ b/game/modules/tome/data/quests/keepsake.lua
@@ -80,7 +80,7 @@ on_enter_cave_entrance = function(self, who)
 end
 
 on_start_dream = function(self, who)
-	who:learnLore("keepsake-dream")
+	game.party:learnLore("keepsake-dream")
 	game.logPlayer(who, "#VIOLET#You find yourself in a dream.")
 	
 	-- make sure waking up returns to the same spot
@@ -107,14 +107,14 @@ on_start_dream = function(self, who)
 end
 
 on_pickup_acorn = function(self, who)
-	who:learnLore("keepsake-acorn")
+	game.party:learnLore("keepsake-acorn")
 	game.logPlayer(who, "#VIOLET#You have discovered a small iron acorn, a link to your past.")
 	
 	who:setQuestStatus("keepsake", engine.Quest.COMPLETED, "acorn-found")
 end
 
 on_find_caravan = function(self, who)
-	who:learnLore("keepsake-caravan")
+	game.party:learnLore("keepsake-caravan")
 	game.logPlayer(who, "#VIOLET#The merchant caravan from the past has appeared in your dream.")
 	
 	-- turn the caravaneers hostile
@@ -154,22 +154,22 @@ on_caravan_destroyed_chat_over = function(self, who)
 	who.die = who.old_die
 	who.old_die = nil
 	
-	who:learnLore("keepsake-dreams-end")
+	game.party:learnLore("keepsake-dreams-end")
 	game.logPlayer(who, "#VIOLET#You have begun your hunt for Kyless!")
 end
 
 on_cave_marker = function(self, who)
-	who:learnLore("keepsake-cave-marker")
+	game.party:learnLore("keepsake-cave-marker")
 	game.logPlayer(who, "#VIOLET#You have a marker to the entrance of Kyless' cave!")
 end
 
 on_cave_entrance = function(self, who)
-	who:learnLore("keepsake-cave-entrance")
+	game.party:learnLore("keepsake-cave-entrance")
 	game.logPlayer(who, "#VIOLET#You have found the entrance to Kyless' cave!")
 end
 
 on_cave_description = function(self, who)
-	who:learnLore("keepsake-cave-description")
+	game.party:learnLore("keepsake-cave-description")
 	
 	-- spawn the guards
 	spot = game.level:pickSpot{type="guards", subtype="wardog"}
@@ -186,7 +186,7 @@ on_cave_description = function(self, who)
 end
 
 on_vault_entrance = function(self, who)
-	who:learnLore("keepsake-vault-entrance")
+	game.party:learnLore("keepsake-vault-entrance")
 	game.logPlayer(who, "#VIOLET#You have found the entrance to a vault!")
 end
 
@@ -205,7 +205,7 @@ on_dog_vault = function(self, who)
 end
 
 on_kyless_encounter = function(self, who)
-	who:learnLore("keepsake-kyless-encounter")
+	game.party:learnLore("keepsake-kyless-encounter")
 	game.logPlayer(who, "#VIOLET#You have found Kyless. You must destroy him.")
 end
 
@@ -250,10 +250,10 @@ on_berethh_death = function(self, who, berethh)
 	
 	if self.balance > 0 then
 		who:setQuestStatus("keepsake", engine.Quest.COMPLETED, "berethh-killed-good")
-		who:learnLore("keepsake-berethh-death-good")
+		game.party:learnLore("keepsake-berethh-death-good")
 	else
 		who:setQuestStatus("keepsake", engine.Quest.COMPLETED, "berethh-killed-evil")
-		who:learnLore("keepsake-berethh-death-evil")
+		game.party:learnLore("keepsake-berethh-death-evil")
 	end
 	self.spawn_companions = true
 	
diff --git a/game/modules/tome/data/quests/shertul-fortress.lua b/game/modules/tome/data/quests/shertul-fortress.lua
index 70d18ba1a7..0a8fd01992 100644
--- a/game/modules/tome/data/quests/shertul-fortress.lua
+++ b/game/modules/tome/data/quests/shertul-fortress.lua
@@ -192,7 +192,7 @@ fly = function(self)
 
 		f:takeControl(game.player)
 	else
-		game.player:learnLore("shertul-fortress-takeoff")
+		game.party:learnLore("shertul-fortress-takeoff")
 
 		local f = require("mod.class.FortressPC").new{}
 		game:changeLevel(1, "wilderness", {direct_switch=true})
diff --git a/game/modules/tome/data/quests/staff-absorption.lua b/game/modules/tome/data/quests/staff-absorption.lua
index 1c24eb3358..461ca0d112 100644
--- a/game/modules/tome/data/quests/staff-absorption.lua
+++ b/game/modules/tome/data/quests/staff-absorption.lua
@@ -42,7 +42,7 @@ desc = function(self, who)
 end
 
 on_grant = function(self, who)
-	who:learnLore("master-slain")
+	game.party:learnLore("master-slain")
 	game.logPlayer(who, "#00FFFF#You can feel the power of this staff just by carrying it. This is both ancient and dangerous.")
 	game.logPlayer(who, "#00FFFF#It should be shown to the wise elders in Last Hope!")
 end
diff --git a/game/modules/tome/data/talents/corruptions/shadowflame.lua b/game/modules/tome/data/talents/corruptions/shadowflame.lua
index 87167d0272..cb860afe79 100644
--- a/game/modules/tome/data/talents/corruptions/shadowflame.lua
+++ b/game/modules/tome/data/talents/corruptions/shadowflame.lua
@@ -222,7 +222,7 @@ newTalent{
 			end
 
 			game.logPlayer(game.player, "#LIGHT_RED#You are taken to the Fearscape!")
-			game.player:learnLore("fearscape-entry")
+			game.party:learnLore("fearscape-entry")
 			level.allow_demon_plane_damage = true
 		end)
 
diff --git a/game/modules/tome/data/talents/psionic/slumber.lua b/game/modules/tome/data/talents/psionic/slumber.lua
index 76d6aea2f0..cb4c946a2b 100644
--- a/game/modules/tome/data/talents/psionic/slumber.lua
+++ b/game/modules/tome/data/talents/psionic/slumber.lua
@@ -226,7 +226,7 @@ newTalent{
 
 			game.logPlayer(game.player, "#LIGHT_BLUE#You are taken to the Dreamscape!")
 
-			if game.party:hasMember(target) then game.player:learnLore("dreamscape-entry") end
+			if game.party:hasMember(target) then game.party:learnLore("dreamscape-entry") end
 		end)
 
 		local power = self:mindCrit(t.getPower(self, t))
diff --git a/game/modules/tome/data/talents/uber/wil.lua b/game/modules/tome/data/talents/uber/wil.lua
index c20992ed16..0351dc521f 100644
--- a/game/modules/tome/data/talents/uber/wil.lua
+++ b/game/modules/tome/data/talents/uber/wil.lua
@@ -126,11 +126,11 @@ uberTalent{
 		local o1 = self:findInAllInventoriesBy("define_as", "SET_GARKUL_TEETH")
 		local o2 = self:findInAllInventoriesBy("define_as", "HELM_OF_GARKUL")
 		return o1 and o2 and o1.wielded and o2.wielded and (game.state.birth.ignore_prodigies_special_reqs or (
-			game.player:knownLore("garkul-history-1") and
-			game.player:knownLore("garkul-history-2") and
-			game.player:knownLore("garkul-history-3") and
-			game.player:knownLore("garkul-history-4") and
-			game.player:knownLore("garkul-history-5")
+			game.party:knownLore("garkul-history-1") and
+			game.party:knownLore("garkul-history-2") and
+			game.party:knownLore("garkul-history-3") and
+			game.party:knownLore("garkul-history-4") and
+			game.party:knownLore("garkul-history-5")
 			))
 	end} },
 	info = function(self, t)
diff --git a/game/modules/tome/data/zones/crypt-kryl-feijan/zone.lua b/game/modules/tome/data/zones/crypt-kryl-feijan/zone.lua
index e96a3ccfc1..30a7f01225 100644
--- a/game/modules/tome/data/zones/crypt-kryl-feijan/zone.lua
+++ b/game/modules/tome/data/zones/crypt-kryl-feijan/zone.lua
@@ -71,7 +71,7 @@ return {
 			game.level.max_turn_counter = 20 * 10
 			game.level.turn_counter_desc = "The cultists are about to sacrifice the woman. Stop them!"
 			game.player:grantQuest("kryl-feijan-escape")
-			game.player:learnLore("kryl-feijan-altar")
+			game.party:learnLore("kryl-feijan-altar")
 		end
 	end,
 	on_turn = function(self)
diff --git a/game/modules/tome/data/zones/demon-plane/zone.lua b/game/modules/tome/data/zones/demon-plane/zone.lua
index 3a8279b8c1..dc4989912e 100644
--- a/game/modules/tome/data/zones/demon-plane/zone.lua
+++ b/game/modules/tome/data/zones/demon-plane/zone.lua
@@ -65,6 +65,6 @@ return {
 		},
 	},
 	on_enter = function(lev, old_lev, newzone)
-		if newzone then game.player:learnLore("fearscape-entry") end
+		if newzone then game.party:learnLore("fearscape-entry") end
 	end,
 }
diff --git a/game/modules/tome/data/zones/dreadfell/grids.lua b/game/modules/tome/data/zones/dreadfell/grids.lua
index fa02c4137b..621ae431cf 100644
--- a/game/modules/tome/data/zones/dreadfell/grids.lua
+++ b/game/modules/tome/data/zones/dreadfell/grids.lua
@@ -30,6 +30,6 @@ newEntity{
 	add_displays = {class.new{image="terrain/signpost.png"}},
 	always_remember = true,
 	on_move = function(self, x, y, who)
-		if who.player then who:learnLore(self.lore) end
+		if who.player then game.party:learnLore(self.lore) end
 	end,
 }
diff --git a/game/modules/tome/data/zones/golem-graveyard/grids.lua b/game/modules/tome/data/zones/golem-graveyard/grids.lua
index d49b5feeae..31f5f0689e 100644
--- a/game/modules/tome/data/zones/golem-graveyard/grids.lua
+++ b/game/modules/tome/data/zones/golem-graveyard/grids.lua
@@ -34,7 +34,7 @@ Someone foolish has tried to reconstruct it, but it seems like it misses an eye
 	dig = false,
 	block_move = function(self, x, y, e, act, couldpass)
 		if e and e.player and act then
-			e:learnLore("broken-atamathon")
+			game.party:learnLore("broken-atamathon")
 			local eye, eye_item = e:findInInventoryBy(e:getInven("INVEN"), "define_as", "ATAMATHON_ACTIVATE")
 			if eye then
 				require("engine.ui.Dialog"):yesnoPopup("Atamathon", "It seems that your "..eye:getName{do_color=true}.." is made to fit inside the empty eye socket of Atamathon. This is probably very unwise.", function(ret)
diff --git a/game/modules/tome/data/zones/lake-nur/grids.lua b/game/modules/tome/data/zones/lake-nur/grids.lua
index 79c901e384..74fd4aee08 100644
--- a/game/modules/tome/data/zones/lake-nur/grids.lua
+++ b/game/modules/tome/data/zones/lake-nur/grids.lua
@@ -39,7 +39,7 @@ newEntity{
 	always_remember = true,
 	change_level = 1, change_zone = "shertul-fortress",
 	change_level_check = function(self, who)
-		if who:knownLore("old-forest-note-5") then
+		if who.player and game.party:knownLore("old-forest-note-5") then
 			game.logPlayer(who, "#ANTIQUE_WHITE#You notice a hole that could fit the gem key you found earlier, inserting it reveals the passage to the next level.")
 			who:setQuestStatus("shertul-fortress", engine.Quest.COMPLETED, "entered")
 		else
diff --git a/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua b/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua
index cdf93236a6..b2372b6e94 100644
--- a/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua
+++ b/game/modules/tome/data/zones/last-hope-graveyard/npcs.lua
@@ -102,10 +102,10 @@ newEntity{ define_as = "CELIA",
 			Dialog:simpleLongPopup("Celia", "As you deal the last blow you quickly carve out Celia's heart for your Lichform ritual.\nCarefully weaving magic around it to keep it beating.", 400)
 			p:setQuestStatus("grave-necromancer", engine.Quest.COMPLETED, "kill-necromancer")
 		else
-			if game.player:knownLore("necromancer-primer-1") and
-			   game.player:knownLore("necromancer-primer-2") and
-			   game.player:knownLore("necromancer-primer-3") and
-			   game.player:knownLore("necromancer-primer-4") then
+			if game.party:knownLore("necromancer-primer-1") and
+			   game.party:knownLore("necromancer-primer-2") and
+			   game.party:knownLore("necromancer-primer-3") and
+			   game.party:knownLore("necromancer-primer-4") then
 				game:setAllowedBuild("mage_necromancer", true)
 			end
 			p:setQuestStatus("grave-necromancer", engine.Quest.COMPLETED, "kill")
diff --git a/game/modules/tome/data/zones/reknor/grids.lua b/game/modules/tome/data/zones/reknor/grids.lua
index 0f5bad9599..e4968f5258 100644
--- a/game/modules/tome/data/zones/reknor/grids.lua
+++ b/game/modules/tome/data/zones/reknor/grids.lua
@@ -71,6 +71,6 @@ newEntity{
 	add_displays = {class.new{image="terrain/signpost.png"}},
 	always_remember = true,
 	on_move = function(self, x, y, who)
-		if who.player then who:learnLore(self.lore) end
+		if who.player then game.party:learnLore(self.lore) end
 	end,
 }
diff --git a/game/modules/tome/data/zones/ruined-dungeon/grids.lua b/game/modules/tome/data/zones/ruined-dungeon/grids.lua
index 3e26533034..dc0a7cb784 100644
--- a/game/modules/tome/data/zones/ruined-dungeon/grids.lua
+++ b/game/modules/tome/data/zones/ruined-dungeon/grids.lua
@@ -33,7 +33,7 @@ newEntity{
 		if self.lore == "infinite-dungeon-4" then
 			game:setAllowedBuild("campaign_infinite_dungeon", true)
 		end
-		who:learnLore(self.lore)
+		game.party:learnLore(self.lore)
 	end,
 }
 end
diff --git a/game/modules/tome/data/zones/shertul-fortress/grids.lua b/game/modules/tome/data/zones/shertul-fortress/grids.lua
index 2ac64c1a3f..43666ecd3c 100644
--- a/game/modules/tome/data/zones/shertul-fortress/grids.lua
+++ b/game/modules/tome/data/zones/shertul-fortress/grids.lua
@@ -166,7 +166,7 @@ newEntity{
 			profile:setConfigsBatch(true)
 			if profile.mod.lore and profile.mod.lore.lore then
 				for lore, _ in pairs(profile.mod.lore.lore) do
-					game.player:learnLore(lore, true, true)
+					game.party:learnLore(lore, true, true)
 					core.wait.manualTick(1)
 				end
 			end
@@ -174,7 +174,7 @@ newEntity{
 
 			popup:done()
 
-			game:registerDialog(require("mod.dialogs.ShowLore").new("Yiilkgur's Library of Lost Mysteries", game.player))
+			game:registerDialog(require("mod.dialogs.ShowLore").new("Yiilkgur's Library of Lost Mysteries", game.party))
 		end
 		return true
 	end,
@@ -186,6 +186,6 @@ newEntity{ define_as = "MURAL_PAINTING"..i,
 	name="mural painting", lore = "shertul-fortress-"..i,
 	display='#', color=colors.LIGHT_RED,
 	image="terrain/solidwall/solid_wall_mural_shertul"..i..".png",
-	block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then e:learnLore(self.lore) end return true end
+	block_move=function(self, x, y, e, act, couldpass) if e and e.player and act then game.party:learnLore(self.lore) end return true end
 }
 end
diff --git a/game/modules/tome/data/zones/town-elvala/objects.lua b/game/modules/tome/data/zones/town-elvala/objects.lua
index 6f36957a71..f74c190b88 100644
--- a/game/modules/tome/data/zones/town-elvala/objects.lua
+++ b/game/modules/tome/data/zones/town-elvala/objects.lua
@@ -20,7 +20,7 @@
 load("/data/general/objects/objects-maj-eyal.lua")
 
 for i = 1, 8 do
-local l = mod.class.interface.PlayerLore.lore_defs["spellblaze-chronicles-"..i]
+local l = mod.class.interface.PartyLore.lore_defs["spellblaze-chronicles-"..i]
 newEntity{ base = "BASE_LORE",
 	define_as = "SPELLBLAZE_NOTE"..i,
 	subtype = "spellblaze", unique=true, no_unique_lore=true, not_in_stores=false,
diff --git a/game/modules/tome/data/zones/town-last-hope/objects.lua b/game/modules/tome/data/zones/town-last-hope/objects.lua
index 544706b784..0530f15fc1 100644
--- a/game/modules/tome/data/zones/town-last-hope/objects.lua
+++ b/game/modules/tome/data/zones/town-last-hope/objects.lua
@@ -32,7 +32,7 @@ newEntity{ base = "BASE_LORE",
 end
 
 for i = 0, 2 do
-local l = mod.class.interface.PlayerLore.lore_defs["races-"..i]
+local l = mod.class.interface.PartyLore.lore_defs["races-"..i]
 newEntity{ base = "BASE_LORE",
 	define_as = "RACES_NOTE"..i,
 	subtype = "analysis", unique=true, no_unique_lore=true, not_in_stores=false,
diff --git a/game/modules/tome/data/zones/town-zigur/grids.lua b/game/modules/tome/data/zones/town-zigur/grids.lua
index 15c93594a0..0667ceee52 100644
--- a/game/modules/tome/data/zones/town-zigur/grids.lua
+++ b/game/modules/tome/data/zones/town-zigur/grids.lua
@@ -31,7 +31,7 @@ newEntity{
 	add_displays = {class.new{image="terrain/signpost.png"}},
 	always_remember = true,
 	on_move = function(self, x, y, who)
-		if who.player then who:learnLore(self.lore) end
+		if who.player then game.party:learnLore(self.lore) end
 	end,
 }
 
diff --git a/game/modules/tome/dialogs/ShowLore.lua b/game/modules/tome/dialogs/ShowLore.lua
index 2428ded471..3514393c0d 100644
--- a/game/modules/tome/dialogs/ShowLore.lua
+++ b/game/modules/tome/dialogs/ShowLore.lua
@@ -28,7 +28,7 @@ module(..., package.seeall, class.inherit(Dialog))
 
 function _M:init(title, actor)
 	self.actor = actor
-	print("Lore of player", actor.name)
+	print("Lore")
 	local total = #actor.lore_defs + actor.additional_lore_nb
 	local nb = 0
 	for id, data in pairs(actor.lore_known) do nb = nb + 1 end
diff --git a/game/modules/tome/load.lua b/game/modules/tome/load.lua
index 672985847f..6317db68bb 100644
--- a/game/modules/tome/load.lua
+++ b/game/modules/tome/load.lua
@@ -43,7 +43,7 @@ local ActorLevel = require "engine.interface.ActorLevel"
 local Birther = require "engine.Birther"
 local Store = require "mod.class.Store"
 local WorldAchievements = require "mod.class.interface.WorldAchievements"
-local PlayerLore = require "mod.class.interface.PlayerLore"
+local PartyLore = require "mod.class.interface.PartyLore"
 local PartyIngredients = require "mod.class.interface.PartyIngredients"
 local PlayerHotkeys = require "engine.interface.PlayerHotkeys"
 local Quest = require "engine.Quest"
@@ -146,7 +146,7 @@ _2DNoise = n:makeTexture2D(64, 64)
 WorldAchievements:loadDefinition("/data/achievements/")
 
 -- Lore
-PlayerLore:loadDefinition("/data/lore/lore.lua")
+PartyLore:loadDefinition("/data/lore/lore.lua")
 
 -- Useful keybinds
 KeyBind:load("move,hotkeys,inventory,actions,interface,tome,debug")
-- 
GitLab