Gaming
 

Darkmoon Card: Blue Dragon

From WoWWiki

The Darkmoon Card: Blue Dragon, one of the eight Darkmoon Cards, is a trinket received by turning in the "Beasts Deck" at the Darkmoon Faire.

It is difficult to properly gauge the potential usefulness of this trinket without calculations. It has a 2% chance per successful spellcast to ignore the usual 5-second delay in mana regeneration. Usually, a successful spellcast resets a timer that will trigger mana regeneration after 5 seconds. Any caster or healer, especially those that use quick spells like Flash Heal or Flash of Light, may find themselves almost always under the 5-second barrier, and thus rarely regenerating any mana from their Spirit.

This trinket may give the caster a little "breathing time" in which he can regenerate mana. For a player with 250 spirit, therefore (and many priests, paladins, and druids have over 250 spirit), a proc of this trinket will give him - over the 15 seconds - ~566 mana.

This trinket fits most naturally with casters who require constant, prolonged mana use and who have a high amount of spirit (as a small boost in mana does not really matter in short fights). Most healers in a raid will find this trinket useful, though its usefulness will vary depending on factors such as how much spirit the player has and whether they tend to use smaller, more frequent Flash Heals or larger, less frequent Greater Heals.

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

Effective MP/5

The following Java Program can be used to simulate (roughly) the effect of this Trinket over 1,000,000 casts.

public static void main(String[] args)
  {
    double spirit;
    double time = 2.5;
    double intellect;
    double Mana;
    double tLeft;
    int i;
    Random gen = new Random();
    for(intellect = 400; intellect < 1000; intellect += 100)
    {
      for(spirit = 400; spirit < 1000; spirit += 100)
      {
        tLeft = 0;
        Mana = 0;
        for(i = 0; i < 100000; i++)
        {
          if(tLeft > 0)
          {
            tLeft -= time;
            if(tLeft >= 0)
              Mana += time * (0.001 + Math.sqrt(intellect) * spirit * 0.009327);
          }	
        if((gen.nextInt(100) + 1) <= 2)
          tLeft = 15;
        }
        System.out.print("<tr><th>" + intellect + "</th><th>" + spirit + "</th><td align=\"center\">");
        System.out.println(5 * (Mana / (1000000 * time)) + "</td>");
      }
    }
}


Below is a simulation of the behaviour of 1,000,000 chain-casts using a 2.5s G-Heal.

IntellectSpiritEffective +MP5
400.0400.04.2994315399996355
400.0500.05.387332960000989
400.0600.06.393155999999999
400.0700.07.278473459997999
400.0800.08.613728760000116
400.0900.09.209441384998705
500.0400.04.614193835222676
500.0500.05.975767126640859
500.0600.06.9694403947548045
500.0700.08.417148130062003
500.0800.09.33761743902418
500.0900.010.629635287343568
600.0400.05.485478463508469
600.0500.06.578104664999033
600.0600.07.875893766149604
600.0700.09.019011871375294
600.0800.010.93251475541928
600.0900.011.689412718650086
700.0400.05.736949057753477
700.0500.07.065677093598925
700.0600.08.763821438944895
700.0700.09.104233099532657
700.0800.010.957596162264453
700.0900.012.54160878114506
800.0400.05.989539922491635
800.0500.07.511972605916232
800.0600.09.110118427545396
800.0700.010.344075991342812
800.0800.012.088767482517142
800.0900.013.54168648159008
900.0400.06.253249749999999
900.0500.08.175407110000943
900.0600.09.647626454998978
900.0700.011.137054479998705
900.0800.012.59374473999765
900.0900.014.150327700002727

Darkmoon Cards

Darkmoon Cards are obtained by completing a set of eight cards (The relevant Ace plus 7 general cards, numbered 2 of X deck and up to 8 of X deck - like, for example, Four of Beasts). After obtaining the eight cards the player can create a Deck item by clicking and activating the Ace card. All the individual cards and the deck itself are BoE items and can be bought in the Auction House, making an exciting collecting, trading and selling mini-game.

Each Ace drops from a specific elite boss somewhere in the game, which usually have an estimated (unverified) 10% drop chance (since 1.10 patch). The general cards are world drops from ANY general humanoid level 51 and above, including elites. There are no specific place or mob they can drop from. The drop rate is slightly better for elite dungeon bosses.

Once you have the deck item, you can turn it in at the Darkmoon Faire for the final Epic trinket: the Blue Dragon.

External links