diff --git a/assets/misc/ogimage.jpg b/assets/misc/ogimage.jpg index 3791d94..7bb393f 100644 Binary files a/assets/misc/ogimage.jpg and b/assets/misc/ogimage.jpg differ diff --git a/src/ai/coefs.ts b/src/ai/coefs.ts index 092fa54..79f3174 100644 --- a/src/ai/coefs.ts +++ b/src/ai/coefs.ts @@ -11,6 +11,7 @@ const coefs = { drawDiscardPlayagain: 27.6, undiscardable: 2.03, useDiscardRatio: 2.18, + loseDeduction: 999, enemy: 1.08, randomDice: 100, } diff --git a/src/ai/main.ts b/src/ai/main.ts index 863591e..d39d5ab 100644 --- a/src/ai/main.ts +++ b/src/ai/main.ts @@ -85,6 +85,10 @@ export const aiDecision = ( if (special?.undiscardable) { card.score += coefs.undiscardable } + + if (loseImm) { + card.score -= coefs.loseDeduction + } } const scores = cardList.map((card, i) => ({