Add a bit more detail to the anti-magic quest description

All new ideas for the upcoming releases of ToME 4.x.x should be discussed here

Moderator: Moderator

Post Reply
Message
Author
yufra
Perspiring Physicist
Posts: 1332
Joined: Tue Jul 13, 2010 2:53 pm

Add a bit more detail to the anti-magic quest description

#1 Post by yufra »

Here is an updated quest description:

Code: Select all

desc = function(self, who)
	local desc = {}
	desc[#desc+1] = "You met a warrior who invited you join the group called the Ziguranth, dedicated to opposing magic."
	if who:hasQuest("antimagic"):ten_levels_ok(who) then
		desc[#desc+1] = "#SLATE#* You must report back to the warrior in Zigur.#WHITE#"
	else
		desc[#desc+1] = "#SLATE#* You must not use spells, runes, or magical devices.#WHITE#"
		desc[#desc+1] = ("#SLATE#* You have gained %d of 10 levels.#WHITE#"):format(who.level - self.start_level)
	end
	return table.concat(desc, "\n")
end
<DarkGod> lets say it's intended

Post Reply