Skip to content
Snippets Groups Projects
Commit 349f9f09 authored by dg's avatar dg
Browse files

Fix the directions Aeryn provides

Renamed Strength & Willpower infusions


git-svn-id: http://svn.net-core.org/repos/t-engine4@2189 51575b47-30f0-44d4-a5cc-537603b46e54
parent 8a69e7fb
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,7 @@ newEntity{ base = "BASE_INFUSION",
}
newEntity{ base = "BASE_INFUSION",
name = "strength infusion",
name = "heroism infusion",
level_range = {25, 50},
rarity = 16,
cost = 40,
......@@ -185,11 +185,11 @@ newEntity{ base = "BASE_INFUSION",
power = resolvers.mbonus_level(4, 4, function(e, v) return v * 3 end),
use_stat_mod = 0.04,
},
inscription_talent = "INFUSION:_STRENGTH",
inscription_talent = "INFUSION:_HEROISM",
}
newEntity{ base = "BASE_INFUSION",
name = "will infusion",
name = "mind power infusion",
level_range = {25, 50},
rarity = 16,
cost = 40,
......@@ -201,7 +201,7 @@ newEntity{ base = "BASE_INFUSION",
power = resolvers.mbonus_level(4, 4, function(e, v) return v * 3 end),
use_stat_mod = 0.04,
},
inscription_talent = "INFUSION:_WILL",
inscription_talent = "INFUSION:_MIND_POWER",
}
newEntity{ base = "BASE_RUNE",
......
......@@ -30,9 +30,9 @@ desc = function(self, who)
end
if self:isCompleted("helped-fillarel") then
desc[#desc+1] = "Fillarel told you to go to the south west and meet with High Sun Paladin Aeryn."
desc[#desc+1] = "Fillarel told you to go to the south east and meet with High Sun Paladin Aeryn."
elseif self:isCompleted("helped-krogar") then
desc[#desc+1] = "Krogar told you to go to the east and look for the Kruk Pride."
desc[#desc+1] = "Krogar told you to go to the west and look for the Kruk Pride."
end
return table.concat(desc, "\n")
end
......@@ -49,6 +49,6 @@ fillarel_dies = function(self, npc)
if self:isCompleted("sided-krogar") then game.player:setQuestStatus(self.id, self.COMPLETED, "helped-krogar")
else
game.player:setQuestStatus(self.id, self.COMPLETED, "helped-fillarel")
npc:doEmote(game.player.descriptor.race.." go to the south west, and tell Aeryn what happened to me!", 120)
npc:doEmote(game.player.descriptor.race.." go to the south east, and tell Aeryn what happened to me!", 120)
end
end
......@@ -180,7 +180,7 @@ newInscription{
}
newInscription{
name = "Infusion: Strength",
name = "Infusion: Heroism",
type = {"inscriptions/infusions", 1},
points = 1,
no_energy = true,
......@@ -200,7 +200,7 @@ newInscription{
}
newInscription{
name = "Infusion: Will",
name = "Infusion: Mind Power",
type = {"inscriptions/infusions", 1},
points = 1,
no_energy = true,
......
......@@ -109,9 +109,10 @@ configuration "linux"
links { "SDL", "SDL_ttf", "SDL_image", "SDL_mixer", "GL", "GLU", "m", "pthread" }
defines { [[TENGINE_HOME_PATH='".t-engine"']], 'SELFEXE_LINUX' }
postbuildcommands {
"cp bin/Debug/t-engine t-engine",
}
configuration {"linux", "Debug"}
postbuildcommands { "cp bin/Debug/t-engine t-engine", }
configuration {"linux", "Release"}
postbuildcommands { "cp bin/Release/t-engine t-engine", }
----------------------------------------------------------------
......
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