From c4a3847c6a3fe69f6b5b791f1db7f1ce35523de5 Mon Sep 17 00:00:00 2001 From: funman300 Date: Wed, 15 Jul 2026 18:36:30 -0700 Subject: [PATCH] Stop calling DNA a Pair enabler DNA only fires on the round's first hand and only for a single played card (dump/card.lua:3956) - sacrificing a full hand to enable the easiest hand in the game is not a synergy. Its trips/quads enabling stays; that is what the one-copy-per-round loop actually builds toward. Co-Authored-By: Claude Fable 5 --- AUDIT.md | 2 +- synergies.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AUDIT.md b/AUDIT.md index 57deffa..254bc5b 100644 --- a/AUDIT.md +++ b/AUDIT.md @@ -85,7 +85,7 @@ A tag with two is fragile: drop either joker and the theme dies. | `hearts` | 2 | 2 | **2** | yes | | `joker_gen` | 1 | 3 | 4 | yes | | `money` | 15 | 3 | 17 | yes | -| `pair` | 4 | 3 | 4 | yes | +| `pair` | 3 | 3 | 3 | yes | | `planet` | 3 | 3 | 3 | yes | | `probability` | 1 | 7 | 8 | yes | | `retrig_faces` | 1 | 10 | 11 | yes | diff --git a/synergies.lua b/synergies.lua index 8e1d3ea..619c909 100644 --- a/synergies.lua +++ b/synergies.lua @@ -141,7 +141,7 @@ j('j_bootstraps', {'mult'}, {'money'}) -- DNA copies a played card into the deck, which is how you stack duplicate -- ranks -- the only vanilla route to a reliable Four of a Kind. Pure enabler: -- it gives the matching-hand tags without wanting them. -j('j_dna', {'card_gen','pair','three_kind','four_kind'}) +j('j_dna', {'card_gen','three_kind','four_kind'}) j('j_midas_mask', {'gold_gen','enhance_gen'}, {'faces'}) j('j_photograph', {'xmult','copy_target'}, {'faces','retrig_scoring','retrig_faces'}) j('j_stone', {'chips'}, {'stone_gen'})