58 lines
1.9 KiB
Lua
58 lines
1.9 KiB
Lua
--[[
|
|
Illarion Server
|
|
|
|
This program is free software: you can redistribute it and/or modify it under
|
|
the terms of the GNU Affero General Public License as published by the Free
|
|
Software Foundation, either version 3 of the License, or (at your option) any
|
|
later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License along
|
|
with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
]]
|
|
-- INSERT INTO "quests" ("qst_id", "qst_script") VALUES (230, 'quest.explorerguild_320_questlog');
|
|
|
|
local common = require("base.common")
|
|
local explorersguild = require("quest.explorersguild")
|
|
|
|
local M = {}
|
|
|
|
local GERMAN = Player.german
|
|
local ENGLISH = Player.english
|
|
|
|
-- Insert the quest title here, in both languages
|
|
local Title = {}
|
|
Title[GERMAN] = "Abenteurergilde"
|
|
Title[ENGLISH] = "Explorers' Guild"
|
|
|
|
-- For each status insert a list of positions where the quest will continue, i.e. a new status can be reached there
|
|
local QuestTarget = {}
|
|
|
|
-- Insert the quest status which is reached at the end of the quest
|
|
local FINAL_QUEST_STATUS = 3
|
|
|
|
|
|
function M.QuestTitle(user)
|
|
return common.GetNLS(user, Title[GERMAN], Title[ENGLISH])
|
|
end
|
|
|
|
function M.QuestDescription(user, status)
|
|
|
|
local german = "Du hast bereits ".. explorersguild.CountStones(user) .." Markierungssteine der Abenteurergilde gefunden. Weiter so!"
|
|
local english = "You have already found ".. explorersguild.CountStones(user) .." marker stones of the Explorers' Guild. Keep it up!"
|
|
|
|
return common.GetNLS(user, german, english)
|
|
end
|
|
|
|
function M.QuestTargets(user, status)
|
|
return QuestTarget[status]
|
|
end
|
|
|
|
function M.QuestFinalStatus()
|
|
return FINAL_QUEST_STATUS
|
|
end
|
|
return M
|