forked from icyethics/Kino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.txt
More file actions
2052 lines (1673 loc) · 53.4 KB
/
changelog.txt
File metadata and controls
2052 lines (1673 loc) · 53.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
V 0.13a:
- Fixed Playset module intergration
- Fixed missing metadata entries
V 0.13:
New Jokers (25):
- Cat People
- Dr. No
- Da 5 Bloods
- Joker
- Weapons
- 12 Angry Men
- Tron
- The Simpsons Movie
- Zoolander
- Meet the Parents
- Man of Steel
- Final Destination
- Goodburger
- The Substance
- Deadpool
- Black Panther
- The Truman Show
- Pan's Labyrinth
- Marty Supreme
- Snakes on a Plane
- The Godfather
- Forrest Gump
- Bringing Up Baby
- Avengers: Endgame
- Singing In The Rain
New Counters:
- Shock Counters
- Frost Counters
- Drought Counters
New Blinds (29):
- Mr. Glass
- Count Rugen
- Rupert Pupkin
- Saruman
- Annie Wilkes
- Pearl
- Slot Canyon (Ability Blind)
- King Kong (Ability Blind)
- Godzilla (Showdown Ability Blind)
- Elsa
- Jack Torrance
- Krampus (Ability Blind)
- Zeus
- The Cable Guy
- Electro (Ability Blind)
- Scorpion King
- Im-Ho-Tep
- Rattlesnake Jake (Ability Blind)
- Ronald Bartel
- Varang
- Te Ka (Ability Blind)
- Evil Queen
- Poppy Adams (Ability Blind)
- Freddy Krueger
- Rose the Hat
- The Flatline (Ability Blind)
- Jacob Morley
- Clubber Lang
- Ghost Rider (Ability Blind)
Bug Fixes:
- Sleep Counters no longer crash the game when examined in the collection
- Abduction Jokers no longer print a debug statement when hovered over in the collection
V 0.12.1:
Bug Fixes:
- Fixed Canned Beans crashing upon use
Reworked Content:
- The Great Muppet Caper
- Joe Dirt
- 24 Hour Party People
- Blank Check
- Krazy House
- Polar Express
V 0.12j:
Localization Fixes:
- Fixed some localization errors
- Oscar Tag now displays correct info queue
- Bullet consumable now mentions the maximum number of bullets you can have at a given time
Bug Fixes:
- Fixed Mortal Kombat crashing the game when trying to unlock (hopefully)
- Bucket List no longer keeps working when you have 0 charges
- Taken now only triggers on Queens
- The Accountant now properly pays out
- The Quick and the Dead now properly consumes bullets
Mechanical Changes:
- Jokers with detrimental results based on random rolls (The Great Muppet Caper, Krazy House) no longer have the worst case scenario be affected by value manipulation
- Blinds can no longer be lowered to values below 1, or non-integer values
V 0.12i:
Bug Fixes:
- Fixed jokers with the Loaded mechanic not triggering
- Fixed the Bullet consumable not spawning under certain conditions
- The bullet consumable can no longer be sold
- Timer jokers no longer are effected by game speed
Balance Changes:
- Fast Five: $20 money stolen > $10 money stolen
V 0.12h:
Bug Fixes:
- Asteroid City no longer removes joker slots when abducting a negative joker
- Fixed Ego the Living Planet removing consumable slots if it terraformed a negative card
- Fixed crossmod related crashes stemming from Spartacus and Shazam
Localization Changes:
- Fixed some spelling mistakes and repeated sentences
- Fixed missing colours from descriptions
- Fixed description errors
V 0.12g:
Bug Fixes:
- Fixed The Investor?! 45* rotated tarot (MoreFluff crossmod card)
- Fixed a rare crash related to Dr. Strange
- Titanic now properly triggers
- Fixed Sugarland Express unlock condition
Localization & Visual Changes:
- Added a tracker for the Conjuring's unlock condition
- Changed the colour associated with the Family genre to improve readability
Balance Changes:
- Snow Piercer: +4 Mult gained > +6 Mult gained
- Superman (2025): Lowered thresholds to gain abilities
V 0.12f:
Bug Fix:
- Dracula (1931) crash when leaving a run fixed
- Trading Places now checks for a value equal to or greater than $6, rather than only greater than
Unlock Requirement Changes:
- Blade Runner no longer requires you to specifically scale the Runner joker
Localization Fixes:
- John Wick no longer reads nil
- Criterion Collection now has the correct unlock requirement
- Fixed some spelling errors
Reworks:
- Breakfast Club
- Dickie Roberts: Child Star
- Gentlemen Prefer Blondes
- Titanic
V 0.12e:
Bug Fixes:
- Fixed Asteroid City
Reworks:
- Reworked Skyscraper, Double, Lethal Weapon, Monster House, Three Musketeers
V 0.12d:
Bug Fixes:
-- Joker Fixes:
- Mortal Kombat no longer crashes upon unlocking
- Guardians of the Galaxy Volume 2 now correctly displays its genres
- Hardcore Henry's unlock condition has been fixed to reflect the proper number
- Star Man no longer triggers upon every hand after making a match
- Turner and Hooch no longer counts every card
- Turner and Hooch now actually consumes gathered stacks
- Kraven the Hunter resets its target properly
- Superman (2025) properly focuses on played, not scored cards
-- Abduction:
- Jokers with abducted cards within can now be abducted themselves without crashing the game
- Abducted playing cards aren't returned to the deck as ghost cards when reloading a run
-- Misc:
- Fixed a crash related to timed blinds
- Genre synergy doesn't disappear when you buy or sell a joker from a non-synergistic genre
- Additional Boss Blinds no longer half-reset the blind
- Xenomorph Queen now properly debuffs
Localization Changes:
- La La Land's description has been fixed
V 0.12c:
Bug Fix:
- Fixed major performance issues related to Bullets
Unlock changes:
- Changed Coco's unlock condition
V 0.12b:
Mechanical Changes:
- Introducing a new keyword: Temporary Hand size
Reworks:
- The Princess Bride now uses the Temporary Hand Size mechanic
- The Chocolate Bar Confection now uses the Temporary Hand Size mechanic
Balance Changes:
- Blinds:
-- Agent Smith now also cares about adjacent ranks
-- Beach That Makes You Old now triggers half as often
Bug Fixes:
- Godzilla's second effect is now properly displayed
- Fixed 500 Day's of Summer crashing
- Fixed Fantasia related crash in Main menu
- Fixed more Cryptlib incompatibilities
- Chocolate Bar has its localization fixed
V 0.12a:
Bug Fix:
Fixed crash due to Popeye's unlock condition
V 0.12:
Bug Fixes:
- Asteroid City no longer crashes the game and has been reenabled
- Fixed bugs on latest SMODS with joker slots being 0
- Fixed issues with the actor synergy system
- Re-enabled genre synergy system
- Fixed Stargate crashing
- Fixed Stargate only abducting a single card
- Halloween Blind-related enhancements no longer spawn naturally during a run
Visual / Sound changes:
- Confections now have a sound effect when eaten
Mechanical Changes:
- All Kino planets are now the 'Strange Planet' subtype
- Strange Planets have a 'Take' function instead of a 'Use' function
- Halloween mode is now disabled, meaning the two halloween decks have become regular decks. You can, however, reenable their spooky versions in the configurations of the mod!
- Ratatouille is no longer a confection, but the Confection's rare spectral equivalent
- Mystery cards now seek to find their suspect in your hand, rather than in the adjacent card when played.
- Vampire now is recognized as a Vampiric joker
Balance Changes:
- Angel Hearts: Only doubles mult on first trigger of any specific card, and only gives mult once per played hand.
- Baby Driver: Mult > Chips
- Shin Kamen Rider: 1x mult > 0.5x mult
- Ego the Living Planet: Scaling has been significantly reduced
New & Reworked Content:
Jokers (13):
- Inception
- Marty
- 500 Days of Summer
- Eternal Sunshine of the Spotless Mind
- The Accountant
- Dirty Harry
- The Quick & The Dead
- The Maltese Falcon
- Nacho Libre
- Godzilla (1954)
- King Kong (1933)
- Hardcore Henry
- Superman (1978)
Reworked Jokers:
- Her
- Child's Play
- Duel
- Coco
- Piranha
- Hook
- Dune (1984)
- Scream (1997)
- Shin Kamen Rider (Now has a secondary effect)
- John Wick
- Pain & Gain
- Hot Fuzz
- Source Code
- Blank Check
- Frankenstein
- Taken
ENHANCEMENT REWORKS:
- Action Cards
- Mystery Cards
New Planets:
- Treasure Planet
- Vulcan
- Thra
- Altair IV
- Solaris
New Confection:
- Burger
- Donut
- Beans
- Nachos
- Milkshake
- Mint
- Banana
New Deck:
- Videostore Deck
- Cosmonaut's Deck
New Sleeve:
- Videostore Sleeve
- Cosmonaut's Sleeve
- Trick 'r Treat Sleeve
- Bloodlust Sleeve
Description Rework:
(STOPPED AT: Taken)
- 6 Underground
- 9
- 12 Monkeys
- 50 First Dates
- A.I. Artificial Intelligence
- Alien
- Alien 3
- Aliens
- Always
- Annihilation
- Anora
- Apollo 13
- Arrival
- As Above, So Below
- Asteroid City
- Batman '66
- Batman '89
- The Batman
- Batman & Robin
- Batman Begins
- Batman Forever
- Batman: the Killing Joke
- Batman Mask Of the Phantasm
- Batman Returns
- Batman V Superman
- Beetlejuice
- Benjamin Button
- BFG
- Big Daddy
- The Big Short
- Big Trouble in Little China
- Black Swan
- Blade
- The Blair Witch Project
- Bloodshot
- Blue Velvet
- Bones and All
- The Bucket List
- Catch Me If You Can
- Children of the Corn
- Clerks
- Clockwork Orange
- Conjuring
- Contagion
- Creature From the Black Lagoon
- Cruella
- The Dark Knight
- Dead Zone
- Demolition Man
- Tales of the Crypt: Demon Knight
- Die Hard
- Doctor Strange
- Donnie Darko
- Double Dragon
- Ed Wood
- ET
- Ex Machina
- The Exorcist
- Fantasia
- Fargo
- Friday the 13th
- Get Out
- Ghost Rider
- Goodfellas
- Heart Eyes
- Hellboy
- Her
- Hit Man
- Home Alone
- Hook
- Hot Fuzz
- House of Gucci
- Hustle
- Inception
- Incredible Hulk
- Independence Day
- Insidious
- Interstellar
- Iron Giant
- Iron Lady
- Iron Man
- Joe Dirt
- Jurassic Park
- Kiki's Delivery
- Kindergarten Cop
- Kraven the Hunter
- Kung Fu Panda
- La La Land
- Limitless
- Lord of the Rings
- M3gan
- Mafia Mamma
- Mamma Mia
- Man Who Laughs
- Mars Attacks
- Martian
- Memento
- Menu
- Minecraft
- Moneyball
- Mortal Kombat
- Moulin Rouge
- Mr. & Mrs. Smith
- Muppets Treasure Island
- Nightcrawler
V 0.11-HALLOWEENf:
Hotfix:
- Fixed Cryptlib compatibility
V 0.11-HALLOWEENe:
- Hotfix:
- Genre synergy is disabled due to changes in smods that need the system to be reworked.
To make sure the mod is still playable, it's temporarily disabled.
V 0.11-HALLOWEENd:
Bug Fix:
- Fixed Sleeves not properly applying effects or spawning consumables
V 0.11-HALLOWEENc:
Bug Fix:
- Shang Chi no longer crashes the game
- The Sorcerer's Apprentice no longer crashes the game
- Spellslinger's Sleeve no longer crashes the game
- Zodiac no longer has incorrect metadata
V 0.11-HALLOWEENb:
Bug Fix:
- Crash due to missing spell queue no longer happens
- Frankenstein now has a genre
V 0.11-HALLOWEENa:
Bug fix:
- Sci-fi Cards no longer crash
- Romance Cards display their values properly
- MoreFluff crossmod enhancements no longer load without MoreFluff
V 0.11-HALLOWEEN:
Vampire Rework:
Vampire jokers now use the Drain mechanic, and have all been changed to reflect this.
New Jokers:
- Drácula (1931)
- Bram Stoker's Dracula
- Fright Night
- Annabella
- Sinners
- What We Do In The Shadows
- The Conjuring
- War of the Worlds (2025)
- The Nightmare Before Halloween
- Hellraiser
- X
New Decks:
- Pumpkin Deck
- Vampire Deck
New Blinds:
- Pennywise (Halloween Decks only)
- The Pale Man (Halloween Decks only)
- Jack Skellington (Halloween Decks only)
- Fabricator Machine (Halloween Decks Only)
New Tags:
- Trick 'r Treat Tag (Halloween Decks only)
Halloween Mode:
You can disable Halloween mode in the config. This will turn the halloween decks into just decks
V 0.10.5c:
Bug Fix:
- Fixed crash when launching with Cryptid enabled
- Fixed crash caused by spellcasting
- Fixed crash when Ego is used with another consumeable
- Fixed issue where abduction previews would spawn cards on screen permanently on the 1016 release of SMODS
V 0.10.5b:
Visual Update:
- Counters no longer have the number act separately from the card
- Counters now successfully appear in the collection
Credits Update:
Added the following credits:
- On-card Text rendering: Meta
- Bug Reporting: Womb4t, 泡影 (poin)
Bug Fixes:
- Blank Check, Blair Witch Project, and Oceans 11 no longer soft lock the game when affected by aura-style value manipulation
V 0.10.5a:
Balance Changes:
- Movie jokers no longer have actor synergy with themselves, and do not benefit from you owning multiple copies of the same joker
Config Options:
- Allows you to re-enable Joker Self-synergy
V 0.10.5:
API Changes:
- Blockbuster Value Manipulation has been added. Vanilla jokers now can be affected by value manipulation, and it will be easier to have other mods be compatible!
- MoreFluff has been made value manipulation compatible
Balance Changes:
- Nope has been made stronger
- Star Wars Episode 2 now accounts for the default value of x chips and x mult upgrades and won't include it when upgrading
Reworks:
- Guardians of the Galaxy 1 has a new effect
- Ego the Living Planet has a new effect
Content Changes:
- Jokers that do not benefit from value manipulation have been made incompatible, so that awards won't be able to be placed on them.
- Specific values are now capped when value manipulated
- Values that don't make sense to be decimals can no longer be manipulated into decimals, and instead are rounded up or down.
- Sci Fi cards upgrades now persist after the enhancement changes
- Movie Joker Menu: When hovering over a Kino joker, you can press 'K' to get more info on it
V 0.10.4b:
Bug Fix:
- Shang Chi and the Legend of the Ten Rings no longer crashes the game
- Doctor Strange properly casts its spell
- Your Highness no longer gives negatives to jokers
- Aliens now properly debuffs only 2 cards
- Now You See Me, Encanto, Dark Crystal properly casts a spell now
- Made it so Kino cards with destroy effects now also destroy debuffed objects
V 0.10.4a:
Bug Fix:
- Fixed Magic Beans confection
- Fixed Fantasy enhancement
- Fixed spell casting related joker contexts
V 0.10.4:
API Changes:
- Decapitalized a decent number of folders and files. This may help with compiling the mod for unconventional set-ups
- Blockbuster: Spellcasting, the API for all Kino's spell mechanics, has been released and is now implemented in the mod.
Content changes:
Added 6 new Joker Textures:
- Star Wars Episode VIII, Star Wars Episode IX, Star Wars: The Clone Wars, Star Wars Holiday Special, Rogue One, Killer Klowns from Outer Space
Added spell retextures:
- Spell cards now have a new aesthetic
Bug fixes:
- Fixed Edward Scissorhands' missing description
- Fixed 12 Monkeys crashing the game
V 0.10.3c:
Bug Fixes:
- Alderaan Deck no longer crashes
- Counters no longer crash when incrementing down
- Fixed display error for Demonic cards
- Evil Dead (2013) no longer can create multiple copies of sacrificed cards if multiple Demonic Cards are used
- Legendary quests no longer fail to display
V 0.10.3b:
Content Updates:
Added 4 new Joker Textures:
- Star Wars Episode II, Star Wars Episode III, Star Wars Episode V, Star Wars Episode VI
Bug Fixes:
- Debug tarot card removed from pool
- specific Lovely patches no longer break other mods' patches
V 0.10.3a:
Content Updates:
Added 11 new Joker Textures:
- Rush Hour, Hot Fuzz, Blade Runner, The Force Awakens, Your Highness
Source Code, Trading Places, Pirates of the Caribbean 2: Dead Man's Chest, Pirates of the Caribbean 3: At World's End, Star Wars Episode 1
The Pirates! In an Adventure with Scientists
Bug Fixes:
- Hand upgrade system has been properly updated; non-level upgrades no longer get wiped when leveling up a hand
- Apollo no longer crashes when no valid target exists
- 12 Monkeys no longer crashes when Cryptid is installed
- Batman: Mask of the Phantasm actually works
- Fixed spawn rates for Star Wars deck and Batman deck
- Fixed certain jokers forgetting their current target when reloading
(Longlegs, The Batman (2022), Lord of the Rings: The Fellowship of the Ring, Predator)
V 0.10.3:
- Dependency changed to Smods 0827
Content Updates:
- Added 20 new joker textures:
John Wick, Die Hard, Resident Evil, School of Rock, Big Daddy,
a Fish Called Wanda, Fast 5, Tower Heist, Minecraft, Gulliver's Travels,
Pulp Fiction, Dead Zone, Bones & All, Blue Velvet, Elephant Man,
Teenage Mutant Ninja Turtles, Paul, Annihilation, Sunshine, Nightcrawler
API Changes:
- Fixed Burn Counters not working properly when applied to jokers
Content Updates:
- Jokers with a loss condition will now taunt you after you lose your run
Bug Fixes:
- Fixed an issue related to Mystery cards
- Fixed an issue with Stranger than Fiction crashing the game when used with Cryptid installed
- Fixed the Questionable deck crashing upon start up
- Snow White & The Seven Dwarves now works as intended
- Shazam no longer crashes the game
- Mortal Kombat no longer crashes when used when you do not have 2 other jokers
- Fixed crashes that occured when spells were manipulated to have a strength below 1 or above 4
- Retrigger Counters are no longer disabled
- Fixed Talisman related crashes
V 0.10.2a:
Content Updates:
- Added 14 new textures:
Glass, the Iron Lady, Lord of the Rings, Snowpiercer, Moulin Rouge,
Her, Hell Knight, Peggy Sue got Married, The Tree of Life, Kung Fu Panda,
Grown Ups, Kramer Vs. Kramer, Pitch Black, Mamma Mia,
API Changes:
- Added additional functionality to the counter API
Bug Fixes:
- Donnie Darko no longer crashes if no joker is present
- Fixed Krypton crash in specific circumstances
- Counters no longer animate being applied when a card is copied, or they're displayed in the UI
V 0.10.2:
Content Updates:
- Added 5 new Textures: House of Gucci, Gravity, Pain & Gain, Fargo, Metropolis
API Changes:
- Counters API changed. For more details, see the Blockbuster: Counters repository
Content Changes:
- Reduced lag when playing with some other mods enabled due to interaction between quantum enhancements and the draw step
V 0.10.1d:
Content Update:
- Added 11 new joker textures (Guardiants of the Galaxy volume 3, Doctor Strange 1 & 2, Big Trouble in Little China, Popeye, Modern Times, Taken, Demolition Man, to Kill a Mockingbird, V for Vendetta & Black Swan)
Content Changes:
- Actor packs should now only spawn if there is a pool of 10 or more jokers to spawn
Bug Fix:
- Aliens no longer crashes the game when used with no valid targets left in the deck
- Resident Evil functions properly
- Demolition man now upgrades and destroys cards properly
- Chow boss blind no longer crashes
- Fixed Actor Pack crashing when set of connected movies is too small
Localization Changes:
- Added Info Queues for relevant cards for: Aliens 3, The Martian, Mars Attacks, Evil Dead, Ex Machina,
The Exorcist, Friday the 13th, Gremlins, Halloween, I Robot, The Incredibly Hulk, M3gan, Pride & Prejudice,
Sleepy Hollow, Steel, Tower Heist, Twilight, Us, 10 Things I Hate About You, 50 First Dates, Dead Zone, Mortal Kombat,
- Set up description to use multi-boxes for: Elephant Man, Pitch Black, Star Wars Episode V, Signs
- Changed Clerks description to be more precise
- Fixed localization for Big Short
- Fixed localization for Freaky Friday
V 0.10.1c:
Content Update:
- Added 6 new joker textures (Encanto, The Menu, Signs, Doctor Who, Stargate, Independence Day)
Bug Fix:
- Fixed mystery cards displaying 'Error' when the rank had been discovered
- Annihilation is now actually fixed
- Fixed the Snack Bag not properly spawning
- Oscar Tag no longer awards multiple jokers
- Fixed the PG & E blind crashing the game
- Fixed a bug causing retriggered counters to go into the negatives
V 0.10.1b:
Content update:
- Added 3 new joker textures (The Sorcerer's Apprentice, Shang Chi, Hit-Man)
Bug fix:
- Fixed a crash upon switching profiles
API (dev only):
- Added contexts related to counters. See Blockbuster: Counters repo for more.
V 0.10.1a:
Content change:
- Added 3 more new textures
- Temporarily disabled Asteroid City
Bug Fixes:
- Annihilation now does not crash when used on rankless or suitless playing cards as the main target
- Kiki's Delivery Service no longer crashes in specific circumstances
- Fixed a bug that could crash the game when counters are retriggered
- Fixed Dinner Tag softlocking the game
- Spellcasting using modded Suits should no longer crash the game
V 0.10.1:
Content Changes:
- Implemented Counters as an actual game item, viewable in the collection
Bug Fixes:
- Joker boss blind will no longer crash when you do not have any jokers when facing it
- Fixed Frankenstein
- The Prestige functions again
- Barbie now triggers properly on Queens, instead of Kings (we blame Ken)
- Debuff counters now remove the debuff when they get removed in any way
- The Anton Chigurh boss blind now functions as intended, with an update description
V 0.10a:
Bug Fix:
Fixed an issue where counters could be retriggered to tick over into negatives, rather than be removed from the card
V 0.10
Texture Pack Change:
- Pixel art jokers have become the default! If you prefer consistency, you can use the
texture pack provided by the mod through the Malverk texture loader!
New Mechanic:
Counters!
## New Content: ##
Jokers (54 new jokers):
- Pirates of the Caribbean
- Pirates of the Caribbean 2
- Pirates of the Caribbean 3
- Batman (1966)
- Batman Returns
- Batman Forever
- The Dark Knight Rises
- Paul Blart Mall Cop
- Treasure Island
- When Harry Met Sally
- House of Gucci
- Lord of the Rings: The Fellowship of the Ring
- School of Rock
- Gulliver's Travels
- The Warriors
- Annihilation
- Glass
- Waterworld
- The Pirates! Band of Misfits
- Captain Blood
- Muppet Treasure Island
- Trading Places
- Mafia Mamma
- Mortal Kombat
- Batman: Mask of the Phantasm
- The Batman (2022),
- Batman V Superman: Dawn of Justice
- Shin Kamen Rider
- Oppenheimer
- Arrival
- Donnie Darko
- Kiki's Delivery Service
- Moulin Rouge
- Spirited Away
- Pulp Fiction
- Solo: A Star Wars Story
- Lost in Translation
- Kramer Vs. Kramer
- Blade Runner
- Demolition Man
- Blue Velvet
- Elephant Man
- Resident Evil
- Rogue One
- Star Wars: The Clone Wars
- Zodiac
- To Kill a Mockingbird
- Bones And All
- Bucket List
- The Star Wars Holiday Special
- Hit Man
- Rush Hour
- Peggy Sue Got Married
- Treasure Island
Tarots:
- Detective
- Superhero
Spectrals:
- Fright
- Whimsy
Enhancements:
- Mystery Cards
- Superhero Cards
Seals:
- Thriller Seal
- Comedy Seal
Decks:
(genre decks):
- Questionable Deck (Mystery)
- Illicit Deck (Crime)
- Heroic Deck (Superhero)
- Atlethic Deck (Sports)
- Childlike Deck (Family)
- Adventurous Deck (Adventure)
- High Pressure Deck (Thriller)
- Funny Deck (Comedy)
- Investment Deck
- Dark Knight Deck
- Spellslinger's Deck
- Deck That Makes You Old
- Alderaan Deck
- Cosmonaut's Deck
- Empowered Deck
Boss Blinds:
- PB & E
Skip Tags:
- Dinner Tag
- Snack Tag
- Oscar Tag
- Counter Tag
-- Genre Tags
(Genre tags will only be able to spawn if you own a joker of that genre.)
## Reworked Content: ##
Jokers:
- Anora
- Apollo 13
- The Abyss
- Heart Eyes
- Psycho
- Terror Train
- Snow White
- Batman & Robin
- Wall E
- Stripes
Boss Blinds:
- Gordon Gekko
- Hans Gruber
- Mr. Chow
- Sallie Tomato
- Anton Chigurh
Decks:
- All genre decks
## Bug fixes & Balancing: ##
Bug Fixes:
- Cryptid Crossmod: Monster energy's don't retrigger every joker selected by monster energy
- Cryptid Crossmod: Selling Monster Energy no longer lets the marker linger
- Citizen Kane is now a Legendary, as intended
- Kino blinds can no longer lower your mult to 0
- Moneyball is Cryptid compatible
- c2n deck and IMDB packs no longer create duplicates of owned jokers
Balance Changes:
- Jaws: +30 Chips > +50 Chips
- Star Wars Episode III: The Revenge of the Sith > No longer upgrades cards on retriggers
- Beetlejuice: Rare, x2 > Uncommon, x3
V 0.9.4g:
Bug Fixes:
- Star Wars Episode III: Revenge of the Sith no longer upgrades on retriggers
- Fixed a bug with Soul cards not spawning souls
Dependency Changes:
- Kino is now dependant on the latest SMODS release, to avoid specific unintended interactions
V 0.9.4f:
Bug Fixes:
- Dracula (1931): Dracula now properly gains xmult when triggered for unenhanced cards
- Fixed the movie jokers only config option not working when the rarity system was enabled
- Gentlemen Prefer Blondes; Titanic; Dickie Roberts, Child Star; The Breakfast Club: No longer give negative mult when below the threshold
- Deckard Shaw now properly displays its effect
- Balatro Multiplayer: Fixed crash on exiting run through the pause menu
- Fixed a bug with Hard Eight's chances
- Fixed some crashes that could happen when using confections with other mods enabled
- Fixed Snackbag crashes under specific sell circumstances
- Card Sleeve: Producer sleeve now functions identically to the deck
- BFG now properly works when playing with Talisman, but not with Cryptid
Balance Changes:
- Gentlemen Prefer Blondes; Titanic; Dickie Roberts, Child Star; The Breakfast Club: Instead of always measuring from 13, it instead measures from the starting suit count of your deck
- Baby Driver: No longer gives double mult if card matches on both sides
- Ghost Rider: Gain x0.25 > Gain x0.5
Localization Changes:
- 9
- 12 Monkeys
- Alien
- Aliens
- Always
- Apollo 13
- Batman & Robin
- Batman Begins
- Big Daddy
- Big Short
- Big Trouble in Little China
- Black Swan
- Blair Witch Project
- Back to the Future
- Cast Away
- Chef
- Children of the Corn
- Clockwork Orange
Content Changes:
- Turner & Hooch: Effect Reworked
- 10 Things I Hate About You: New Effects
- 30 Days of Night: New Effect
- Children of the Corn: New Effect
- Ex Machina: New Effect
- Evil Dead: New Effect
- Death Star: Now destroys a random joker except your leftmost one
Content Additions:
- MALVERK textures now at 110
V 0.9.4e:
Bug fix:
- Balatro Multiplayer: No longer makes the game crash on start-up
V 0.9.4d:
Bug Fixes:
- Star Wars Episode II no longer crashes the game
- Batman & Robin now works correctly
Localization fixes:
- Crime cards: Incorrect steal glossary item removed