Skip to content
Snippets Groups Projects
Commit 93cef71f authored by DarkGod's avatar DarkGod
Browse files

ogres start in angolwen/point zero

Added hooks "BirthStartZone:ashesurhrok", "BirthStartZone:chronomancer", "BirthStartZone:archmage" to allow addons to alter which races start in those special zones
parent b7451882
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,7 @@ newBirthDescriptor{
self.faction = "keepers-of-reality"
self:learnTalent(self.T_TELEPORT_POINT_ZERO, true, nil, {no_unlearn=true})
end
self:triggerHook{"BirthStartZone:chronomancer"}
end,
},
}
......
......@@ -200,7 +200,7 @@ newBirthDescriptor{
copy = {
-- Mages start in angolwen
class_start_check = function(self)
if self.descriptor.world == "Maj'Eyal" and (self.descriptor.race == "Human" or self.descriptor.race == "Elf" or self.descriptor.race == "Halfling") and not self._forbid_start_override then
if self.descriptor.world == "Maj'Eyal" and (self.descriptor.race == "Human" or self.descriptor.race == "Elf" or self.descriptor.race == "Halfling" or (self.descriptor.race == "Giant" and self.descriptor.subrace == "Ogre")) and not self._forbid_start_override then
self.archmage_race_start_quest = self.starting_quest
self.default_wilderness = {"zone-pop", "angolwen-portal"}
self.starting_zone = "town-angolwen"
......@@ -209,6 +209,7 @@ newBirthDescriptor{
self.faction = "angolwen"
self:learnTalent(self.T_TELEPORT_ANGOLWEN, true, nil, {no_unlearn=true})
end
self:triggerHook{"BirthStartZone:archmage"}
end,
max_life = 90,
......
......@@ -144,7 +144,7 @@ newTalent{
getSPMult = function(self, t) return self:combatTalentScale(t, 1/7, 5/7) end,
info = function(self, t)
return ([[Raw magical damage channels through the caster's weapon, increasing Physical Power by %d.
Each time your crit with a melee blow, you will unleash a radius 2 ball of either fire, lightning or arcane damage, doing %0.2f.
Each time you crit with a melee blow, you will unleash a radius 2 ball of either fire, lightning or arcane damage, doing %0.2f.
The bonus scales with your Spellpower.
If you are using a shield this will only occur 75%% of the time.
If you are dual wielding this will only occur 50%% of the time.
......
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