[B31] Summon skill description and inherit stats

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
marvalis
Uruivellas
Posts: 683
Joined: Sun Sep 05, 2010 5:11 am

[B31] Summon skill description and inherit stats

#1 Post by marvalis »

The skill description reads:
Your summons inherit some of your stats: increased damage%%, stun/pin/confusion/blindness resistance, armour penetration.
The code is:

Code: Select all

	local main_weapon = self:getInven("MAINHAND") and self:getInven("MAINHAND")[1]
	m:attr("combat_apr", self:combatAPR(main_weapon))
	m.inc_damage = table.clone(self.inc_damage, true)
	m.resists_pen = table.clone(self.resists_pen, true)
	m:attr("stun_immune", self:attr("stun_immune"))
	m:attr("blind_immune", self:attr("blind_immune"))
	m:attr("pin_immune", self:attr("pin_immune"))
	m:attr("confusion_immune", self:attr("confusion_immune"))
IF I understand this correctly, then that means that only the main hand weapon armor penetration is used. The description does not mention resistance penetration but the code does.

The description should then read:
Your summons inherit some of your stats: stun/pin/confusion/blindness resistance, increased damage%%, resistance penetration, and the armour penetration of your main hand weapon.

Reverend Bizarre
Higher
Posts: 61
Joined: Sun Jul 11, 2010 9:03 am

Re: [B31] Summon skill description and inherit stats

#2 Post by Reverend Bizarre »

Also, descriptions of summons don't mention the fact that summons improve not only with willpower of Summoner, but with his level too. Level 1 Summoner will summon level 1 War Hound, level 2 Summoner will summon level 2 War Hound and so on.

Post Reply