TransWikia.com

Is 'snecko eye' a bad choice without 2-cost cards?

Arqade Asked on November 12, 2021

A lot of players seem to believe that in order to make Snecko eye a good choice of boss relic, the deck should contain high-cost cards. They are hesitant to pick this relic up. The thought is that snecko eye changes the costs of cards to 1.5, and that therefore, compared to an energy relic, the snecko eye makes a tradeoff:

  1. You get more cards to choose from;
  2. Cards cost 1.5, so you can play less cards than without it when your cards are mostly cheap. So 2 cards per turn seems to be what you can do on average.

In addition, everything can cost 2 or 3 sometimes, allowing you to play only one card. Therefore, Snecko should rarely be picked, especially without 2-cost cards.

Is this assumption correct?

One Answer

This assumption is actually mostly wrong. While indeed the average card costs 1.5, the cards are randomly distributed. By increasing your hand size to 7, it is likely to see multiple zero- and one-cost cards. This little piece of C# code tries to simulate how many cards are playable with 3 energy, on average:

int numCards = 7;
int[] costs = new int[7];
Random rand = new Random();
int totalPlayed = 0;
for(int tries = 0; tries < 1000000; ++tries) { 
    for (int i = 0; i < numCards; ++i) {
        costs[i] = rand.Next() % 4;
    }
    int avE = 3;
    int cardsPlayed = 0;
    Array.Sort(costs);
    for (int i = 0; i < numCards; ++i) {
        avE -= costs[i];
        if (avE < 0) {
            break;
        } else {
            cardsPlayed++;
        }
    }
    totalPlayed += cardsPlayed;
}
Decimal avgPlayed = (Decimal) totalPlayed / (Decimal) 1000000;
System.Console.WriteLine("AVG cpt: " + avgPlayed);

One million hands are simulated. Try running the code: It should print out a figure of about 3.83.

This means that, if you don't draw any additional cards, Snecko eye allows you to play 3.83 cards out of the 7. If your average card cost used to be 1, then that is a distinct improvement over the 3 cards you could play before.

A pure energy relic would up the number to '4' cards. The break-even card cost (where Snecko eye does not increase or reduce) is thus at an average cost of around 3/3.83 ~ 0.78. For a mix of 20 1- and 0-cost cards, this would mean at least 5 zero-cost cards.

Here's what the probability distribution histogram of each number of playable cards looks like:

Snecko historgram

Answered by aphid on November 12, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP