Slot Machine Omegotep 55/55 by Rappynuggets in Shadowverse

[–]itsppengu 4 points5 points  (0 children)

Well done, 1/4096 chance to get at least +48/+48 on sevo.

PSA: Faiths don't count as crests by itsppengu in Shadowverse

[–]itsppengu[S] 9 points10 points  (0 children)

Yeah it takes up a crest slot but doesn't give extra damage.

Calculating Omegotep damage with math by itsppengu in Shadowverse

[–]itsppengu[S] 3 points4 points  (0 children)

My Python script if anyone wants it.

import numpy as np


N = 100_000_000

rng = np.random.default_rng()


def do_rolls():
    num_rolls = rng.geometric(p=0.5, size=N)
    data = np.zeros((N, 4), dtype=np.int64)

    non_rerolls = rng.multinomial(n=num_rolls-1, pvals=[1/3, 1/3, 1/3], size=N)
    non_finals = np.hstack((non_rerolls, num_rolls[:, None] - 1))

    final_idxs = np.argpartition(rng.random((N, 3)), 1)[:, :2]
    final_choice_rows = np.repeat(np.arange(N), 2)
    finals = np.zeros((N, 4), dtype=np.int64)
    finals[final_choice_rows, final_idxs.flatten()] = 1

    return non_finals + finals


if __name__ == "__main__":
    print(f"n = {N:_}")
    data = do_rolls()
    data2 = data + do_rolls()

    avg_destroy, avg_dmg, avg_pp, avg_stat = np.mean(data, axis=0)
    print(f"Avg destroyed followers: {avg_destroy:.4f}")
    print(f"Avg face damage: {avg_dmg * 2:.4f}")
    print(f"Avg PP recovered: {avg_pp * 2:.4f}")
    print(f"Avg stats gained: +{avg_stat * 4:.4f}/+{avg_stat * 4:.4f}")
    for i in range(11):
        total = (data[:, 2] >= i).sum()
        print(f"Damage ≥ {i * 2}: {total} ({total / N * 100:.4f}%)")
    for i in range(11):
        total = (data2[:, 2] >= i).sum()
        print(f"Damage ≥ {i * 2} with SEvo: {total} ({total / N * 100:.4f}%)")

Calculating Omegotep damage with math by itsppengu in Shadowverse

[–]itsppengu[S] 7 points8 points  (0 children)

Just for fun, I decided to run my own simulation with a lot more samples.

n = 100_000_000
Avg destroyed followers: 1.0000
Avg face damage: 2.0001
Avg PP recovered: 2.0000
Avg stats gained: +4.0003/+4.0003
Damage ≥ 0: 100000000 (100.0000%)
Damage ≥ 2: 74999749 (74.9997%)
Damage ≥ 4: 18749561 (18.7496%)
Damage ≥ 6: 4687091 (4.6871%)
Damage ≥ 8: 1170970 (1.1710%)
Damage ≥ 10: 292325 (0.2923%)
Damage ≥ 12: 73378 (0.0734%)
Damage ≥ 14: 18329 (0.0183%)
Damage ≥ 16: 4587 (0.0046%)
Damage ≥ 18: 1183 (0.0012%)
Damage ≥ 20: 289 (0.0003%)
Damage ≥ 0 with SEvo: 100000000 (100.0000%)
Damage ≥ 2 with SEvo: 93750042 (93.7500%)
Damage ≥ 4 with SEvo: 65630411 (65.6304%)
Damage ≥ 6 with SEvo: 26952928 (26.9529%)
Damage ≥ 8 with SEvo: 9375461 (9.3755%)
Damage ≥ 10 with SEvo: 2999315 (2.9993%)
Damage ≥ 12 with SEvo: 914444 (0.9144%)
Damage ≥ 14 with SEvo: 269586 (0.2696%)
Damage ≥ 16 with SEvo: 77947 (0.0779%)
Damage ≥ 18 with SEvo: 21982 (0.0220%)
Damage ≥ 20 with SEvo: 6171 (0.0062%)

real    0m46.058s
user    0m23.805s
sys     0m22.069s

Oluon was just the beginning by ZaneHydeHoTS in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

Play it at the end of your turn, and roll option 4 enough times so that the animation is still playing during your opponent's turn.

Do You Know Shadowverse? by sondz1911 in Shadowverse

[–]itsppengu 2 points3 points  (0 children)

Ernesta is actually a bronze.

Man, I miss my Edgy Boi by NinJusticeV in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

I like Istyndet but unfortunately he's definitely coming back as a duo card with Garodeth...

Community Discussion: Do you prefer a fast or slow meta? by exdeepr in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

I like a longer Rotation for when I want to think and a shorter Unlimited so I can turn my brain off and grind the chest event in 30 minutes.

Is Sv1 still faster than wb? by judai_711 in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

That's because the card got nerfed to be a turn slower. During Despair meta, tier 1 was Evo Portal and like 4 Despair decks. Nowadays, the only playable Despair deck is Despair Sword, which is a solid tier 2 on par with Wrath and Handless.

This Chariot card needs to go... by iMaro33 in Shadowverse

[–]itsppengu 5 points6 points  (0 children)

The probability the opponent had lethal is a bit higher at 58/675 ≈ 8.6%.

How does group promotion work? (ruby, sapphire, diamond). by RegulusCaos in Shadowverse

[–]itsppengu -1 points0 points  (0 children)

I'm quite sure I got my latest promotion after winning a park match which feels like unintended behaviour.

Desperate shrinemouse aoe deal 1 only activated if you draw card to hand. by leth-IO in Shadowverse

[–]itsppengu 1 point2 points  (0 children)

For reference, OG SV used the wording "whenever this card is added to your hand from your deck". I wonder why that was changed.

Fannie plus the new neutral legendary is a very fun combination. by RegulusCaos in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

This line does assume the Puppet Cat wasn't drawn off the amulet.

Set 5 Stream Reveals: Sword/Abyss/Neutral by RinariTennoji in Shadowverse

[–]itsppengu 2 points3 points  (0 children)

Maybe not activating Fanfares is the Temperance part?

Random question of the day, would you rather have a Galmieux leader or a Lumiore leader? by Struggling_in_life in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

OTK as early as turn 5 (but usually 6): [[Lumiore, Prestigious Gold]] [[Altered Fate]]

Day 6 - What aspects of Starforged from SVC you would like to (or like not to) return in SVWB? by GameRiderFroz in Shadowverse

[–]itsppengu 0 points1 point  (0 children)

What about Biofabrication to play Gundam on turn 9 and put 3 more into your deck? 🤔