Projekt

Allgemein

Profil

Fehler #23148

Von karn vor etwa 7 Jahren aktualisiert

Es wurde in einem alten Ticket #16668 der Schamane Erdschild Spell falsch gefixt. Der Fix führt dazu dass wenn Auren die die verursachte Heilung Prozentual erhöhen/verringern Erdschild schlechter/besser skaliert als es sollte. 


 TL;DR: Gleicher Fix wie beim alten Ticket. Nur an einer anderen Stelle gefixt. 

 Altes Ticket(Inhalt): 

 <pre> 
 Erschild hat zZ bei jeder Aufladung einen ZM-Koeffizienten von 0,286. Alles ohne irgendwelche +x% Heal durch Talente oder Ähnliches. 

 Mit 10k ZM getestet: 
 337+x*10k ZM= 3197 --> x= 0,286 

 Der ZM #Koeffizient sollte jedoch ~ 0.538 betragen (*1,88) 

 Aufgrund von: 

 "As of Patch 3.0.2, it is necessary to multiply the results of the standard equations by a factor of approximately 1.88 for all healing spells. This is a proportionality constant introduced to account for the fact that bonus healing behaved differently from bonus spell damage prior to the patch, and took on a different range of values." 

 Aus: http://et.worldofwarcraft.wikia.com/wiki/Spell_power 

 Zusätzlich nutzen andere Addons/Simulatoren ebenfalls einen Koeffizienten von 0,538 pro Aufladung. 

 WoWWiki value is 0.286 and 1.88 is the generic healing scale, so: 

 Coef: 0.286 * 1.88 = 0.5376 

 DrDamage r1426 

 ["Name"] = "Earth Shield", 
 [0] = { School = { "Nature", "Healing", }, canCrit = true, sHits = 6, SPBonus = 3.228, NoDPS = true, NoDoom = true, NoPeriod = true, Downrank = 9 }, 
 Coef: SPBonus/sHits = 3.228 / 6 = 0.538 

 Rawr v53352 (latest version for 3.3.5) 

 float ESBonusHealing = stats.SpellPower; // ES bonus healing = spell power 
 ESBonusHealing *= 1.88f * (1f / 3.5f); // ... * generic healing scale * HoT scale 

 Coef: 1.88 * (1 / 3.5) = 0.5371 

 Selbst bei uns in der DB ist einer von +47.62% eingetragen, welcher jedoch nciht benutzt wird. 

 Mit verbessertem Erdschild werden 2 Aufladungen hinzugefügt und der Heal um 10% erhöht: 3516. Das passt. 
 Man sieht auch shcön im Paragon Video wie viel sein Erdschild healt. Davon sind wir weit entfernt, trotz 5% Buff, die die hatten. 

 +IDs:+ 
 https://db.rising-gods.de/?search=erdschild#abilities 
 https://db.rising-gods.de/?search=erdschild#talents 

 +Quellen:+ 
 https://github.com/TrinityCore/TrinityCore/issues/6268 
 http://www.wowwiki.com/Spell_power_coefficient 
 http://www.wowpedia.org/Spellpower 
 https://www.youtube.com/watch?v=RSeVCw3hVgQ 
 </pre>

Zurück