diff --git a/static/balatro.html b/static/balatro.html index 17660fc..e1c1559 100644 --- a/static/balatro.html +++ b/static/balatro.html @@ -25,32 +25,33 @@ .title{display:flex; align-items:baseline; gap:8px; margin:0 0 8px} .title h1{font-size:18px; margin:0; letter-spacing:.3px} .title .count{font-size:12px; color:var(--muted)} - .searchwrap{position:relative} .search{ - width:100%; padding:9px 38px 9px 12px; font-size:16px; color:var(--txt); + width:100%; padding:9px 12px; font-size:16px; color:var(--txt); background:var(--bg2); border:1px solid var(--line); border-radius:10px; outline:none; } .search:focus{border-color:#5566aa} .search::-webkit-search-cancel-button{display:none} - .clear{ - position:absolute; right:6px; top:50%; transform:translateY(-50%); - width:26px; height:26px; border:none; border-radius:50%; cursor:pointer; - background:var(--line); color:var(--txt); font-size:18px; line-height:1; - display:none; align-items:center; justify-content:center; padding:0; - } - .clear.show{display:flex} + + /* rarity radios drive the filter purely in CSS; kept off-screen */ + .rfilter{position:absolute; width:0; height:0; opacity:0; pointer-events:none} .filters{display:grid; grid-template-columns:repeat(5,1fr); gap:6px; margin-top:8px} .chip{ font-size:11px; padding:6px 2px; border-radius:999px; cursor:pointer; user-select:none; - text-align:center; white-space:nowrap; + text-align:center; white-space:nowrap; display:block; background:var(--bg2); border:1px solid var(--line); color:var(--muted); } - .chip.on{color:#fff; border-color:transparent} - .chip[data-r="all"].on{background:#4a5160} - .chip[data-r="Common"].on{background:var(--common)} - .chip[data-r="Uncommon"].on{background:var(--uncommon)} - .chip[data-r="Rare"].on{background:var(--rare)} - .chip[data-r="Legendary"].on{background:var(--legendary)} + #r-all:checked ~ header label[for="r-all"]{background:#4a5160; color:#fff; border-color:transparent} + #r-Common:checked ~ header label[for="r-Common"]{background:var(--common); color:#fff; border-color:transparent} + #r-Uncommon:checked ~ header label[for="r-Uncommon"]{background:var(--uncommon); color:#fff; border-color:transparent} + #r-Rare:checked ~ header label[for="r-Rare"]{background:var(--rare); color:#fff; border-color:transparent} + #r-Legendary:checked ~ header label[for="r-Legendary"]{background:var(--legendary); color:#fff; border-color:transparent} + + /* hide cards that don't match the chosen rarity (or the search query) */ + #r-Common:checked ~ main .card:not(.Common){display:none} + #r-Uncommon:checked ~ main .card:not(.Uncommon){display:none} + #r-Rare:checked ~ main .card:not(.Rare){display:none} + #r-Legendary:checked ~ main .card:not(.Legendary){display:none} + .card.nomatch{display:none} main{padding:12px; max-width:1100px; margin:0 auto} .grid{ @@ -67,28 +68,34 @@ .card{ display:flex; flex-direction:column; align-items:center; text-align:center; background:var(--card); border:1px solid var(--line); border-radius:12px; - padding:9px 8px 10px; color:inherit; position:relative; cursor:pointer; + padding:9px 8px 10px; position:relative; border-top:3px solid var(--line); -webkit-tap-highlight-color:transparent; } - .card.open{background:#2c313e} + .card[open]{background:#2c313e} .card.Common{border-top-color:var(--common)} .card.Uncommon{border-top-color:var(--uncommon)} .card.Rare{border-top-color:var(--rare)} .card.Legendary{border-top-color:var(--legendary)} + .card summary{ + display:flex; flex-direction:column; align-items:center; + list-style:none; cursor:pointer; width:100%; + } + .card summary::-webkit-details-marker{display:none} .card img{ width:auto; height:78px; image-rendering:pixelated; filter:drop-shadow(0 3px 4px rgba(0,0,0,.45)); } .name{font-weight:600; font-size:13px; margin:6px 0 2px; line-height:1.2; min-height:2.4em} .meta{display:flex; gap:6px; align-items:center; justify-content:center; font-size:11px; margin-bottom:5px} - .cost{color:var(--gold); font-weight:600} - .rar{color:var(--muted)} + .rar{color:var(--muted); font-size:11px; margin-bottom:5px} .rar.Common{color:var(--common)} .rar.Uncommon{color:var(--uncommon)} .rar.Rare{color:var(--rare)} .rar.Legendary{color:var(--legendary)} - .effect{font-size:11.5px; color:var(--muted); line-height:1.3; display:none; margin-top:2px} - .card.open .effect{display:block} - /* Desktop: bigger tiles, joker art at native 142x190 size. - Placed after the base .card rules so it wins the cascade. */ + .effect{font-size:11.5px; color:var(--muted); line-height:1.3; margin-top:6px} + .wiki{ + margin-top:7px; font-size:11px; color:#69e6ff; + text-decoration:underline; text-underline-offset:2px; display:inline-block; + } + /* Desktop: bigger tiles, joker art at native 142x190 size. */ @media (min-width:768px){ .grid{ grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:14px } .card{ padding:14px 12px 16px } @@ -96,21 +103,13 @@ .name{ font-size:15px } .effect{ font-size:13px } } - .wiki{ - display:none; margin-top:7px; font-size:11px; color:#69e6ff; - text-decoration:underline; text-underline-offset:2px; - } - .card.open .wiki{display:inline-block} - .empty{text-align:center; color:var(--muted); padding:40px 0; grid-column:1/-1} .totop{ position:fixed; left:16px; bottom:calc(16px + env(safe-area-inset-bottom,0)); width:46px; height:46px; border-radius:50%; z-index:20; background:rgba(37,41,52,.7); - border:1px solid var(--line); color:var(--txt); font-size:22px; line-height:1; - display:flex; align-items:center; justify-content:center; cursor:pointer; - opacity:0; pointer-events:none; transition:opacity .2s; + border:1px solid var(--line); color:var(--txt); font-size:22px; line-height:46px; + text-align:center; text-decoration:none; } - .totop.show{opacity:1; pointer-events:auto} footer{text-align:center; color:var(--muted); font-size:11px; padding:18px 12px 30px} footer a{color:var(--muted)} @@ -132,85 +131,1384 @@ .suit-club{color:#009cfd} - + + + + + +
-

Balatro Jokers

-
- - -
-
- All - Common - Uncommon - Rare - Legendary +

Balatro Jokers

150 jokers
+ +
+ + + + +
-
+
+
+ + Common + Joker + Joker + +

+4 Mult

+ Wiki ↗ +
+
+ + Common + Greedy Joker + Greedy Joker + +

Played cards with ♦︎ Diamond suit give +3 Mult when scored

+ Wiki ↗ +
+
+ + Common + Lusty Joker + Lusty Joker + +

Played cards with ♥︎ Heart suit give +3 Mult when scored

+ Wiki ↗ +
+
+ + Common + Wrathful Joker + Wrathful Joker + +

Played cards with ♠︎ Spade suit give +3 Mult when scored

+ Wiki ↗ +
+
+ + Common + Gluttonous Joker + Gluttonous Joker + +

Played cards with ♣︎ Club suit give +3 Mult when scored

+ Wiki ↗ +
+
+ + Common + Jolly Joker + Jolly Joker + +

+8 Mult if played hand contains a Pair

+ Wiki ↗ +
+
+ + Common + Zany Joker + Zany Joker + +

+12 Mult if played hand contains a Three of a Kind

+ Wiki ↗ +
+
+ + Common + Mad Joker + Mad Joker + +

+10 Mult if played hand contains a Two Pair

+ Wiki ↗ +
+
+ + Common + Crazy Joker + Crazy Joker + +

+12 Mult if played hand contains a Straight

+ Wiki ↗ +
+
+ + Common + Droll Joker + Droll Joker + +

+10 Mult if played hand contains a Flush

+ Wiki ↗ +
+
+ + Common + Sly Joker + Sly Joker + +

+50 Chips if played hand contains a Pair

+ Wiki ↗ +
+
+ + Common + Wily Joker + Wily Joker + +

+100 Chips if played hand contains a Three of a Kind

+ Wiki ↗ +
+
+ + Common + Clever Joker + Clever Joker + +

+80 Chips if played hand contains a Two Pair

+ Wiki ↗ +
+
+ + Common + Devious Joker + Devious Joker + +

+100 Chips if played hand contains a Straight

+ Wiki ↗ +
+
+ + Common + Crafty Joker + Crafty Joker + +

+80 Chips if played hand contains a Flush

+ Wiki ↗ +
+
+ + Common + Half Joker + Half Joker + +

+20 Mult if played hand contains 3 or fewer cards

+ Wiki ↗ +
+
+ + Uncommon + Joker Stencil + Joker Stencil + +

X1 Mult for each empty Joker slot
Joker Stencil included
(Currently X1)

+ Wiki ↗ +
+
+ + Uncommon + Four Fingers + Four Fingers + +

All Flushes and Straights can be made with 4 cards

+ Wiki ↗ +
+
+ + Uncommon + Mime + Mime + +

Retrigger all card held in hand abilities

+ Wiki ↗ +
+
+ + Common + Credit Card + Credit Card + +

Go up to -$20 in debt

+ Wiki ↗ +
+
+ + Uncommon + Ceremonial Dagger + Ceremonial Dagger + +

When Blind is selected, destroy Joker to the right and permanently add double its sell value to this Mult
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Common + Banner + Banner + +

+30 Chips for each remaining discard

+ Wiki ↗ +
+
+ + Common + Mystic Summit + Mystic Summit + +

+15 Mult when 0 discards remaining

+ Wiki ↗ +
+
+ + Uncommon + Marble Joker + Marble Joker + +

Adds one Stone card to the deck when Blind is selected

+ Wiki ↗ +
+
+ + Uncommon + Loyalty Card + Loyalty Card + +

X4 Mult every 6 hands played
5 remaining

+ Wiki ↗ +
+
+ + Common + 8 Ball + 8 Ball + +

1 in 4 chance for each played 8 to create a Tarot card when scored
(Must have room)

+ Wiki ↗ +
+
+ + Common + Misprint + Misprint + +

+0-23 Mult

+ Wiki ↗ +
+
+ + Uncommon + Dusk + Dusk + +

Retrigger all played cards in final hand of the round

+ Wiki ↗ +
+
+ + Common + Raised Fist + Raised Fist + +

Adds double the rank of lowest ranked card held in hand to Mult

+ Wiki ↗ +
+
+ + Common + Chaos the Clown + Chaos the Clown + +

1 free Reroll per shop

+ Wiki ↗ +
+
+ + Uncommon + Fibonacci + Fibonacci + +

Each played Ace, 2, 3, 5, or 8 gives +8 Mult when scored

+ Wiki ↗ +
+
+ + Uncommon + Steel Joker + Steel Joker + +

Gives X0.2 Mult for each Steel Card in your full deck
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Common + Scary Face + Scary Face + +

Played face cards give +30 Chips when scored

+ Wiki ↗ +
+
+ + Common + Abstract Joker + Abstract Joker + +

+3 Mult for each Joker card
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Common + Delayed Gratification + Delayed Gratification + +

Earn $2 per discard if no discards are used by end of the round

+ Wiki ↗ +
+
+ + Uncommon + Hack + Hack + +

Retrigger each played 2, 3, 4, or 5

+ Wiki ↗ +
+
+ + Uncommon + Pareidolia + Pareidolia + +

All cards are considered face cards

+ Wiki ↗ +
+
+ + Common + Gros Michel + Gros Michel + +

+15 Mult
1 in 6 chance this card is destroyed at end of round

+ Wiki ↗ +
+
+ + Common + Even Steven + Even Steven + +

Played cards with even rank give +4 Mult when scored
(10, 8, 6, 4, 2)

+ Wiki ↗ +
+
+ + Common + Odd Todd + Odd Todd + +

Played cards with odd rank give +31 Chips when scored
(A, 9, 7, 5, 3)

+ Wiki ↗ +
+
+ + Common + Scholar + Scholar + +

Played Aces give +20 Chips and +4 Mult when scored

+ Wiki ↗ +
+
+ + Common + Business Card + Business Card + +

Played face cards have a 1 in 2 chance to give $2 when scored

+ Wiki ↗ +
+
+ + Common + Supernova + Supernova + +

Adds the number of times poker hand has been played this run to Mult

+ Wiki ↗ +
+
+ + Common + Ride the Bus + Ride the Bus + +

This Joker gains +1 Mult per consecutive hand played without a scoring face card
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Space Joker + Space Joker + +

1 in 4 chance to upgrade level of played poker hand

+ Wiki ↗ +
+
+ + Common + Egg + Egg + +

Gains $3 of sell value at end of round

+ Wiki ↗ +
+
+ + Uncommon + Burglar + Burglar + +

When Blind is selected, gain +3 Hands and lose all discards

+ Wiki ↗ +
+
+ + Uncommon + Blackboard + Blackboard + +

X3 Mult if all cards held in hand are ♠︎ Spades or ♣︎ Clubs

+ Wiki ↗ +
+
+ + Common + Runner + Runner + +

Gains +15 Chips if played hand contains a Straight
(Currently +0 Chips)

+ Wiki ↗ +
+
+ + Common + Ice Cream + Ice Cream + +

+100 Chips
-5 Chips for every hand played

+ Wiki ↗ +
+
+ + Rare + DNA + DNA + +

If first hand of round has only 1 card, add a permanent copy to deck and draw it to hand

+ Wiki ↗ +
+
+ + Common + Splash + Splash + +

Every played card counts in scoring

+ Wiki ↗ +
+
+ + Common + Blue Joker + Blue Joker + +

+2 Chips for each remaining card in deck
(Currently +104 Chips)

+ Wiki ↗ +
+
+ + Uncommon + Sixth Sense + Sixth Sense + +

If first hand of round is a single 6, destroy it and create a Spectral card
(Must have room)

+ Wiki ↗ +
+
+ + Uncommon + Constellation + Constellation + +

This Joker gains X0.1 Mult every time a Planet card is used
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Hiker + Hiker + +

Every played card permanently gains +5 Chips when scored

+ Wiki ↗ +
+
+ + Common + Faceless Joker + Faceless Joker + +

Earn $5 if 3 or more face cards are discarded at the same time

+ Wiki ↗ +
+
+ + Common + Green Joker + Green Joker + +

+1 Mult per hand played
-1 Mult per discard
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Common + Superposition + Superposition + +

Create a Tarot card if poker hand contains an Ace and a Straight
(Must have room)

+ Wiki ↗ +
+
+ + Common + To Do List + To Do List + +

Earn $4 if poker hand is a [Poker Hand], poker hand changes at end of round

+ Wiki ↗ +
+
+ + Common + Cavendish + Cavendish + +

X3 Mult
1 in 1000 chance this card is destroyed at the end of round

+ Wiki ↗ +
+
+ + Uncommon + Card Sharp + Card Sharp + +

X3 Mult if played poker hand has already been played this round

+ Wiki ↗ +
+
+ + Common + Red Card + Red Card + +

This Joker gains +3 Mult when any Booster Pack is skipped
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Madness + Madness + +

When Small Blind or Big Blind is selected, gain X0.5 Mult and destroy a random Joker
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Common + Square Joker + Square Joker + +

This Joker gains +4 Chips if played hand has exactly 4 cards
(Currently 0 Chips)

+ Wiki ↗ +
+
+ + Uncommon + Séance + Séance + +

If poker hand is a Straight Flush, create a random Spectral card
(Must have room)

+ Wiki ↗ +
+
+ + Common + Riff-Raff + Riff-Raff + +

When Blind is selected, create 2 Common Jokers
(Must have room)

+ Wiki ↗ +
+
+ + Uncommon + Vampire + Vampire + +

This Joker gains X0.1 Mult per scoring Enhanced card played, removes card Enhancement
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Shortcut + Shortcut + +

Allows Straights to be made with gaps of 1 rank
(ex: 10 8 6 5 3)

+ Wiki ↗ +
+
+ + Uncommon + Hologram + Hologram + +

This Joker gains X0.25 Mult every time a playing card is added to your deck
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Rare + Vagabond + Vagabond + +

Create a Tarot card if hand is played with $4 or less

+ Wiki ↗ +
+
+ + Rare + Baron + Baron + +

Each King held in hand gives X1.5 Mult

+ Wiki ↗ +
+
+ + Uncommon + Cloud 9 + Cloud 9 + +

Earn $1 for each 9 in your full deck at end of round
(Currently $4)

+ Wiki ↗ +
+
+ + Uncommon + Rocket + Rocket + +

Earn $1 at end of round. Payout increases by $2 when Boss Blind is defeated

+ Wiki ↗ +
+
+ + Rare + Obelisk + Obelisk + +

This Joker gains X0.2 Mult per consecutive hand played without playing your most played poker hand
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Midas Mask + Midas Mask + +

All played face cards become Gold cards when scored

+ Wiki ↗ +
+
+ + Uncommon + Luchador + Luchador + +

Sell this card to disable the current Boss Blind

+ Wiki ↗ +
+
+ + Common + Photograph + Photograph + +

First played face card gives X2 Mult when scored

+ Wiki ↗ +
+
+ + Uncommon + Gift Card + Gift Card + +

Add $1 of sell value to every Joker and Consumable card at end of round

+ Wiki ↗ +
+
+ + Uncommon + Turtle Bean + Turtle Bean + +

+5 hand size, reduces by 1 each round

+ Wiki ↗ +
+
+ + Uncommon + Erosion + Erosion + +

+4 Mult for each card below [the deck's starting size] in your full deck
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Common + Reserved Parking + Reserved Parking + +

Each face card held in hand has a 1 in 2 chance to give $1

+ Wiki ↗ +
+
+ + Common + Mail-In Rebate + Mail-In Rebate + +

Earn $5 for each discarded [rank], rank changes every round

+ Wiki ↗ +
+
+ + Uncommon + To the Moon + To the Moon + +

Earn an extra $1 of interest for every $5 you have at end of round

+ Wiki ↗ +
+
+ + Common + Hallucination + Hallucination + +

1 in 2 chance to create a Tarot card when any Booster Pack is opened
(Must have room)

+ Wiki ↗ +
+
+ + Common + Fortune Teller + Fortune Teller + +

+1 Mult per Tarot card used this run
(Currently +0)

+ Wiki ↗ +
+
+ + Common + Juggler + Juggler + +

+1 hand size

+ Wiki ↗ +
+
+ + Common + Drunkard + Drunkard + +

+1 discard each round

+ Wiki ↗ +
+
+ + Uncommon + Stone Joker + Stone Joker + +

Gives +25 Chips for each Stone Card in your full deck
(Currently +0 Chips)

+ Wiki ↗ +
+
+ + Common + Golden Joker + Golden Joker + +

Earn $4 at end of round

+ Wiki ↗ +
+
+ + Uncommon + Lucky Cat + Lucky Cat + +

This Joker gains X0.25 Mult every time a Lucky card successfully triggers
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Rare + Baseball Card + Baseball Card + +

Uncommon Jokers each give X1.5 Mult

+ Wiki ↗ +
+
+ + Uncommon + Bull + Bull + +

+2 Chips for each $1 you have
(Currently +0 Chips)

+ Wiki ↗ +
+
+ + Uncommon + Diet Cola + Diet Cola + +

Sell this card to create a free Double Tag

+ Wiki ↗ +
+
+ + Uncommon + Trading Card + Trading Card + +

If first discard of round has only 1 card, destroy it and earn $3

+ Wiki ↗ +
+
+ + Uncommon + Flash Card + Flash Card + +

This Joker gains +2 Mult per reroll in the shop
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Common + Popcorn + Popcorn + +

+20 Mult
-4 Mult per round played

+ Wiki ↗ +
+
+ + Uncommon + Spare Trousers + Spare Trousers + +

This Joker gains +2 Mult if played hand contains a Two Pair
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Rare + Ancient Joker + Ancient Joker + +

Each played card with [suit] gives X1.5 Mult when scored,
suit changes at end of round

+ Wiki ↗ +
+
+ + Uncommon + Ramen + Ramen + +

X2 Mult, loses X0.01 Mult per card discarded

+ Wiki ↗ +
+
+ + Common + Walkie Talkie + Walkie Talkie + +

Each played 10 or 4 gives +10 Chips and +4 Mult when scored

+ Wiki ↗ +
+
+ + Uncommon + Seltzer + Seltzer + +

Retrigger all cards played for the next 10 hands

+ Wiki ↗ +
+
+ + Uncommon + Castle + Castle + +

This Joker gains +3 Chips per discarded [suit] card, suit changes every round
(Currently +0 Chips)

+ Wiki ↗ +
+
+ + Common + Smiley Face + Smiley Face + +

Played face cards give +5 Mult when scored

+ Wiki ↗ +
+
+ + Rare + Campfire + Campfire + +

This Joker gains X0.25 Mult for each card sold, resets when Boss Blind is defeated
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Common + Golden Ticket + Golden Ticket + +

Played Gold cards earn $4 when scored

+ Wiki ↗ +
+
+ + Uncommon + Mr. Bones + Mr. Bones + +

Prevents Death if chips scored are at least 25% of required chips
self destructs

+ Wiki ↗ +
+
+ + Uncommon + Acrobat + Acrobat + +

X3 Mult on final hand of round

+ Wiki ↗ +
+
+ + Uncommon + Sock and Buskin + Sock and Buskin + +

Retrigger all played face cards

+ Wiki ↗ +
+
+ + Common + Swashbuckler + Swashbuckler + +

Adds the sell value of all other owned Jokers to Mult
(Currently +1 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Troubadour + Troubadour + +

+2 hand size,
-1 hand each round

+ Wiki ↗ +
+
+ + Uncommon + Certificate + Certificate + +

When round begins, add a random playing card with a random seal to your hand

+ Wiki ↗ +
+
+ + Uncommon + Smeared Joker + Smeared Joker + +

♥︎ Hearts and ♦︎ Diamonds count as the same suit, ♠︎ Spades and ♣︎ Clubs count as the same suit

+ Wiki ↗ +
+
+ + Uncommon + Throwback + Throwback + +

X0.25 Mult for each Blind skipped this run
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Common + Hanging Chad + Hanging Chad + +

Retrigger first played card used in scoring 2 additional times

+ Wiki ↗ +
+
+ + Uncommon + Rough Gem + Rough Gem + +

Played cards with ♦︎ Diamond suit earn $1 when scored

+ Wiki ↗ +
+
+ + Uncommon + Bloodstone + Bloodstone + +

1 in 2 chance for played cards with ♥︎ Heart suit to give X1.5 Mult when scored

+ Wiki ↗ +
+
+ + Uncommon + Arrowhead + Arrowhead + +

Played cards with ♠︎ Spade suit give +50 Chips when scored

+ Wiki ↗ +
+
+ + Uncommon + Onyx Agate + Onyx Agate + +

Played cards with ♣︎ Club suit give +7 Mult when scored

+ Wiki ↗ +
+
+ + Uncommon + Glass Joker + Glass Joker + +

This Joker gains X0.75 Mult for every Glass Card that is destroyed
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Uncommon + Showman + Showman + +

Joker, Tarot, Planet, and Spectral cards may appear multiple times

+ Wiki ↗ +
+
+ + Uncommon + Flower Pot + Flower Pot + +

X3 Mult if poker hand contains a ♦︎ Diamond card, ♣︎ Club card, ♥︎ Heart card, and ♠︎ Spade card

+ Wiki ↗ +
+
+ + Rare + Blueprint + Blueprint + +

Copies ability of Joker to the right

+ Wiki ↗ +
+
+ + Rare + Wee Joker + Wee Joker + +

This Joker gains +8 Chips when each played 2 is scored
(Currently +0 Chips)

+ Wiki ↗ +
+
+ + Uncommon + Merry Andy + Merry Andy + +

+3 discards each round,
-1 hand size

+ Wiki ↗ +
+
+ + Uncommon + Oops! All 6s + Oops! All 6s + +

Doubles all listed probabilities
(ex: 1 in 3 -> 2 in 3)

+ Wiki ↗ +
+
+ + Uncommon + The Idol + The Idol + +

Each played [rank] of [suit] gives X2 Mult when scored
Card changes every round

+ Wiki ↗ +
+
+ + Uncommon + Seeing Double + Seeing Double + +

X2 Mult if played hand has a scoring ♣︎ Club card and a scoring card of any other suit

+ Wiki ↗ +
+
+ + Uncommon + Matador + Matador + +

Earn $8 if played hand triggers the Boss Blind ability

+ Wiki ↗ +
+
+ + Rare + Hit the Road + Hit the Road + +

This Joker gains X0.5 Mult for every Jack discarded this round
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Rare + The Duo + The Duo + +

X2 Mult if played hand contains a Pair

+ Wiki ↗ +
+
+ + Rare + The Trio + The Trio + +

X3 Mult if played hand contains a Three of a Kind

+ Wiki ↗ +
+
+ + Rare + The Family + The Family + +

X4 Mult if played hand contains a Four of a Kind

+ Wiki ↗ +
+
+ + Rare + The Order + The Order + +

X3 Mult if played hand contains a Straight

+ Wiki ↗ +
+
+ + Rare + The Tribe + The Tribe + +

X2 Mult if played hand contains a Flush

+ Wiki ↗ +
+
+ + Rare + Stuntman + Stuntman + +

+250 Chips,
-2 hand size

+ Wiki ↗ +
+
+ + Rare + Invisible Joker + Invisible Joker + +

After 2 rounds, sell this card to Duplicate a random Joker
(Currently 0/2)
(Removes Negative from copy)

+ Wiki ↗ +
+
+ + Rare + Brainstorm + Brainstorm + +

Copies the ability of leftmost Joker

+ Wiki ↗ +
+
+ + Uncommon + Satellite + Satellite + +

Earn $1 at end of round per unique Planet card used this run

+ Wiki ↗ +
+
+ + Common + Shoot the Moon + Shoot the Moon + +

Each Queen held in hand gives +13 Mult

+ Wiki ↗ +
+
+ + Rare + Driver's License + Driver's License + +

X3 Mult if you have at least 16 Enhanced cards in your full deck
(Currently 0)

+ Wiki ↗ +
+
+ + Uncommon + Cartomancer + Cartomancer + +

Create a Tarot card when Blind is selected
(Must have room)

+ Wiki ↗ +
+
+ + Uncommon + Astronomer + Astronomer + +

All Planet cards and Celestial Packs in the shop are free

+ Wiki ↗ +
+
+ + Rare + Burnt Joker + Burnt Joker + +

Upgrade the level of the first discarded poker hand each round

+ Wiki ↗ +
+
+ + Uncommon + Bootstraps + Bootstraps + +

+2 Mult for every $5 you have
(Currently +0 Mult)

+ Wiki ↗ +
+
+ + Legendary + Canio + Canio + +

This Joker gains X1 Mult when a face card is destroyed
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Legendary + Triboulet + Triboulet + +

Played Kings and Queens each give X2 Mult when scored

+ Wiki ↗ +
+
+ + Legendary + Yorick + Yorick + +

This Joker gains X1 Mult every 23 [23] cards discarded
(Currently X1 Mult)

+ Wiki ↗ +
+
+ + Legendary + Chicot + Chicot + +

Disables effect of every Boss Blind

+ Wiki ↗ +
+
+ + Legendary + Perkeo + Perkeo + +

Creates a Negative copy of 1 random consumable card in your possession at the end of the shop

+ Wiki ↗ +
- + - \ No newline at end of file +