Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(Wikify, remove dated/redundant data)
(whee. convert table, round values to 10th decimal, tweaks to styling)
Line 25: Line 25:
   
 
==Effective MP/5==
 
==Effective MP/5==
The following Java Program can be used to simulate (roughly) the effect of this Trinket over 1,000,000 casts.
 
   
  +
{| class="darktable sortable" style="text-align: center;"
public static void main(String[] args)
 
 
|+ Behavior of 1,000,000 chain-casts using a 2.5s Greater Heal
{
 
  +
|-
double spirit;
 
  +
! style="width: 6em;" | Intellect !! style="width: 6em;" | Spirit !! style="width: 9em;" | Effective +MP5
double time = 2.5;
 
  +
|-
double intellect;
 
  +
| 400 || 400 || style="text-align: right;" | 4.2994315400
double Mana;
 
  +
|-
double tLeft;
 
  +
| 400 || 500 || style="text-align: right;" | 5.3873329600
int i;
 
  +
|-
Random gen = new Random();
 
  +
| 400 || 600 || style="text-align: right;" | 6.3931560000
for(intellect = 400; intellect < 1000; intellect += 100)
 
  +
|-
{
 
  +
| 400 || 700 || style="text-align: right;" | 7.2784734600
for(spirit = 400; spirit < 1000; spirit += 100)
 
  +
|-
{
 
  +
| 400 || 800 || style="text-align: right;" | 8.6137287600
tLeft = 0;
 
  +
|-
Mana = 0;
 
  +
| 400 || 900 || style="text-align: right;" | 9.2094413850
for(i = 0; i < 100000; i++)
 
  +
|-
{
 
  +
| 500 || 400 || style="text-align: right;" | 4.6141938352
if(tLeft > 0)
 
  +
|-
{
 
  +
| 500 || 500 || style="text-align: right;" | 5.9757671266
tLeft -= time;
 
  +
|-
if(tLeft >= 0)
 
  +
| 500 || 600 || style="text-align: right;" | 6.9694403948
Mana += time * (0.001 + Math.sqrt(intellect) * spirit * 0.009327);
 
  +
|-
}
 
  +
| 500 || 700 || style="text-align: right;" | 8.4171481301
if((gen.nextInt(100) + 1) <= 2)
 
  +
|-
tLeft = 15;
 
  +
| 500 || 800 || style="text-align: right;" | 9.3376174390
}
 
  +
|-
System.out.print("<tr><th>" + intellect + "</th><th>" + spirit + "</th><td align=\"center\">");
 
  +
| 500 || 900 || style="text-align: right;" | 10.6296352873
System.out.println(5 * (Mana / (1000000 * time)) + "</td>");
 
  +
|-
}
 
  +
| 600 || 400 || style="text-align: right;" | 5.4854784635
}
 
  +
|-
}
 
  +
| 600 || 500 || style="text-align: right;" | 6.5781046650
 
  +
|-
 
  +
| 600 || 600 || style="text-align: right;" | 7.8758937661
Below is a simulation of the behaviour of 1,000,000 chain-casts using a 2.5s G-Heal.
 
  +
|-
 
  +
| 600 || 700 || style="text-align: right;" | 9.0190118714
<table border="2" width="75%"><tr><th>Intellect</th><th>Spirit</th><td align="center">Effective +MP5</td>
 
  +
|-
<tr><th>400.0</th><th>400.0</th><td align="center">4.2994315399996355</td>
 
  +
| 600 || 800 || style="text-align: right;" | 10.932514755
<tr><th>400.0</th><th>500.0</th><td align="center">5.387332960000989</td>
 
  +
|-
<tr><th>400.0</th><th>600.0</th><td align="center">6.393155999999999</td>
 
  +
| 600 || 900 || style="text-align: right;" | 11.689412719
<tr><th>400.0</th><th>700.0</th><td align="center">7.278473459997999</td>
 
  +
|-
<tr><th>400.0</th><th>800.0</th><td align="center">8.613728760000116</td>
 
  +
| 700 || 400 || style="text-align: right;" | 5.7369490578
<tr><th>400.0</th><th>900.0</th><td align="center">9.209441384998705</td>
 
  +
|-
<tr><th>500.0</th><th>400.0</th><td align="center">4.614193835222676</td>
 
  +
| 700 || 500 || style="text-align: right;" | 7.0656770936
<tr><th>500.0</th><th>500.0</th><td align="center">5.975767126640859</td>
 
  +
|-
<tr><th>500.0</th><th>600.0</th><td align="center">6.9694403947548045</td>
 
  +
| 700 || 600 || style="text-align: right;" | 8.7638214389
<tr><th>500.0</th><th>700.0</th><td align="center">8.417148130062003</td>
 
  +
|-
<tr><th>500.0</th><th>800.0</th><td align="center">9.33761743902418</td>
 
  +
| 700 || 700 || style="text-align: right;" | 9.1042330995
<tr><th>500.0</th><th>900.0</th><td align="center">10.629635287343568</td>
 
  +
|-
<tr><th>600.0</th><th>400.0</th><td align="center">5.485478463508469</td>
 
  +
| 700 || 800 || style="text-align: right;" | 10.9575961623
<tr><th>600.0</th><th>500.0</th><td align="center">6.578104664999033</td>
 
  +
|-
<tr><th>600.0</th><th>600.0</th><td align="center">7.875893766149604</td>
 
  +
| 700 || 900 || style="text-align: right;" | 12.5416087811
<tr><th>600.0</th><th>700.0</th><td align="center">9.019011871375294</td>
 
  +
|-
<tr><th>600.0</th><th>800.0</th><td align="center">10.93251475541928</td>
 
  +
| 800 || 400 || style="text-align: right;" | 5.9895399225
<tr><th>600.0</th><th>900.0</th><td align="center">11.689412718650086</td>
 
  +
|-
<tr><th>700.0</th><th>400.0</th><td align="center">5.736949057753477</td>
 
  +
| 800 || 500 || style="text-align: right;" | 7.5119726059
<tr><th>700.0</th><th>500.0</th><td align="center">7.065677093598925</td>
 
  +
|-
<tr><th>700.0</th><th>600.0</th><td align="center">8.763821438944895</td>
 
  +
| 800 || 600 || style="text-align: right;" | 9.1101184275
<tr><th>700.0</th><th>700.0</th><td align="center">9.104233099532657</td>
 
  +
|-
<tr><th>700.0</th><th>800.0</th><td align="center">10.957596162264453</td>
 
  +
| 800 || 700 || style="text-align: right;" | 10.3440759913
<tr><th>700.0</th><th>900.0</th><td align="center">12.54160878114506</td>
 
  +
|-
<tr><th>800.0</th><th>400.0</th><td align="center">5.989539922491635</td>
 
  +
| 800 || 800 || style="text-align: right;" | 12.0887674825
<tr><th>800.0</th><th>500.0</th><td align="center">7.511972605916232</td>
 
  +
|-
<tr><th>800.0</th><th>600.0</th><td align="center">9.110118427545396</td>
 
  +
| 800 || 900 || style="text-align: right;" | 13.5416864816
<tr><th>800.0</th><th>700.0</th><td align="center">10.344075991342812</td>
 
  +
|-
<tr><th>800.0</th><th>800.0</th><td align="center">12.088767482517142</td>
 
  +
| 900 || 400 || style="text-align: right;" | 6.2532497500
<tr><th>800.0</th><th>900.0</th><td align="center">13.54168648159008</td>
 
  +
|-
<tr><th>900.0</th><th>400.0</th><td align="center">6.253249749999999</td>
 
  +
| 900 || 500 || style="text-align: right;" | 8.1754071100
<tr><th>900.0</th><th>500.0</th><td align="center">8.175407110000943</td>
 
  +
|-
<tr><th>900.0</th><th>600.0</th><td align="center">9.647626454998978</td>
 
  +
| 900 || 600 || style="text-align: right;" | 9.6476264550
<tr><th>900.0</th><th>700.0</th><td align="center">11.137054479998705</td>
 
  +
|-
<tr><th>900.0</th><th>800.0</th><td align="center">12.59374473999765</td>
 
  +
| 900 || 700 || style="text-align: right;" | 11.1370544800
<tr><th>900.0</th><th>900.0</th><td align="center">14.150327700002727</td>
 
  +
|-
</table>
 
  +
| 900 || 800 || style="text-align: right;" | 12.5937447400
  +
|-
  +
| 900 || 900 || style="text-align: right;" | 14.1503277000
 
|}
   
 
==External links==
 
==External links==
Line 107: Line 110:
 
Have a nice day. :) -->
 
Have a nice day. :) -->
 
{{elinks-item|19288}}
 
{{elinks-item|19288}}
 
 
 
{{Darkmoon Cards}}
 
{{Darkmoon Cards}}
   

Revision as of 01:46, 9 August 2010

Inv misc ticket tarot bluedragon 01
INV Misc Ticket Tarot BlueDragon 01

The Darkmoon Card: Blue Dragon, one of four level-60 Darkmoon Cards, is a trinket received by turning in the Inv misc ticket tarot beasts02 [Beasts Deck] at the Darkmoon Faire.

This trinket has a 2% chance per successful spellcast to bypass the 5-Second Rule (5SR): usually, a successful spellcast prevents mana regeneration from Spirit for 5 seconds. Any caster, especially those that use quick spells like Spell holy flashheal [Flash Heal] or Spell holy flashheal [Flash of Light], may find themselves almost always inside the 5SR, and thus rarely regenerating any mana from their Spirit. This trinket is most useful for casters who require constant mana and who have a high amount of Spirit (as a small boost in mana does not really matter in short fights).

If this does not fit their playing style, players may find other trinkets — such as [Mindtap Talisman] — to be more useful.

Effective MP/5

Behavior of 1,000,000 chain-casts using a 2.5s Greater Heal
Intellect Spirit Effective +MP5
400 400 4.2994315400
400 500 5.3873329600
400 600 6.3931560000
400 700 7.2784734600
400 800 8.6137287600
400 900 9.2094413850
500 400 4.6141938352
500 500 5.9757671266
500 600 6.9694403948
500 700 8.4171481301
500 800 9.3376174390
500 900 10.6296352873
600 400 5.4854784635
600 500 6.5781046650
600 600 7.8758937661
600 700 9.0190118714
600 800 10.932514755
600 900 11.689412719
700 400 5.7369490578
700 500 7.0656770936
700 600 8.7638214389
700 700 9.1042330995
700 800 10.9575961623
700 900 12.5416087811
800 400 5.9895399225
800 500 7.5119726059
800 600 9.1101184275
800 700 10.3440759913
800 800 12.0887674825
800 900 13.5416864816
900 400 6.2532497500
900 500 8.1754071100
900 600 9.6476264550
900 700 11.1370544800
900 800 12.5937447400
900 900 14.1503277000

External links