Talk:Multiple Totems Support: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
>Dndmpdju9kvo4fwpxn5
(For that skill gem instance, or for that skill in general? Number of totems.)
 
>Dndmpdju9kvo4fwpxn5
(→‎Acquisition: new section)
 
(9 intermediate revisions by the same user not shown)
Line 6: Line 6:
Am I correct with the following assumptions?
Am I correct with the following assumptions?


There is a "totembase" number, a SearingBond_plus number, a Decoy_plus number, a HolyFlame_plus number, etc. for each totem type.
There are totem types, "Siege Ballista", "Ancestral Protector", "Ancestral Warchief", etc. For each totem type, let denote it X, there is a bonustotems(X) number, representing bonus allowed totems. For each totem type, during combat, there is a livingtotems(X) number, representing the number of currently living totems of that type. There is a "totemlimit" number, representing the base limit for the total number of living totems at any moment.
The Decoy_plus number, HolyFlame_plus, etc. are at start 0. The SearingBond_plus is (at least at start) 1. The totembase is 1.
When the user summons 1 new totem (with an active skill in an active slot), for example a HolyFlame, then if the


number_of_living_totems > totembase + HolyFlame_plus
Some mods or passive nodes can increase or decrease by 1 or more either the totemlimit, or bonustotems(X) for some X.


then 1 totem (the oldest) will be removed.
Any time when the player has just summoned 1 or 2 totems, for example of type "Decoy Totem", some totems may be removed as follows:


Some mods, for example on the Skirmish unique item, increase the totembase. Some other items (Iron Commander unique) can increase SiegeBallista_plus (not only by 1).
while SUM_OF( max(0, livingtotems(X)-bonustotems(X)) ) > totemlimit : remove_the_oldest_totem


In the SUM_OF, X goes through "Siege Ballista", "Ancestral Protector", "Ancestral Warchief"...
"max(0, z)" means just that we do not go negative. (Allowed 2 bonus totems but only 1 living, of that type.)


If the Multiple Totems Support gem is linked to, for example a Devouring Totem, then is the Multiple Totems Support increasing the Devouring_plus number?
 
Or, maybe, there are separate "_plus" numbers for each active totem gem instances?
Is the Multiple Totems Support incrementing bonustotems(X), X mathing the type of the supported (linked) active skill gem?
 
== Acquisition ==
 
"This item is given as quest reward for the following quests", "The Eternal Nightmare"
 
Not correct.
 
I, as a Templar, has just completed quest "The King of Fury", and has been rewarded by Dialla with a "Multiple Totems Support" gem.
The "The King of Desire" has already completed before. In Standard league.

Latest revision as of 23:24, 28 December 2019

"increases the maximum amount of totems for that skill"

for that skill gem instance, or for that skill in general (i.e. for any gem instance of that skill in the "active slot set" i.e. armour slots plus active weapon set slots)?


Am I correct with the following assumptions?

There are totem types, "Siege Ballista", "Ancestral Protector", "Ancestral Warchief", etc. For each totem type, let denote it X, there is a bonustotems(X) number, representing bonus allowed totems. For each totem type, during combat, there is a livingtotems(X) number, representing the number of currently living totems of that type. There is a "totemlimit" number, representing the base limit for the total number of living totems at any moment.

Some mods or passive nodes can increase or decrease by 1 or more either the totemlimit, or bonustotems(X) for some X.

Any time when the player has just summoned 1 or 2 totems, for example of type "Decoy Totem", some totems may be removed as follows:

while SUM_OF( max(0, livingtotems(X)-bonustotems(X)) ) > totemlimit : remove_the_oldest_totem

In the SUM_OF, X goes through "Siege Ballista", "Ancestral Protector", "Ancestral Warchief"... "max(0, z)" means just that we do not go negative. (Allowed 2 bonus totems but only 1 living, of that type.)


Is the Multiple Totems Support incrementing bonustotems(X), X mathing the type of the supported (linked) active skill gem?

Acquisition

"This item is given as quest reward for the following quests", "The Eternal Nightmare"

Not correct.

I, as a Templar, has just completed quest "The King of Fury", and has been rewarded by Dialla with a "Multiple Totems Support" gem. The "The King of Desire" has already completed before. In Standard league.