Skip to content

Commit

Permalink
chore(core): remove unnecessary probability definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinfreund committed Mar 24, 2024
1 parent 2e7575a commit 7c00d11
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions src/lib/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,6 @@ export const JOKER_DEFINITIONS: Record<JokerName, JokerDefinition> = {
},
'Gros Michel': {
rarity: 'common',
probability: {
numerator: 1,
denominator: 4,
},
effect ({ score }) {
score.multiplier += 15
},
Expand All @@ -382,10 +378,6 @@ export const JOKER_DEFINITIONS: Record<JokerName, JokerDefinition> = {
},
'Business Card': {
rarity: 'common',
probability: {
numerator: 1,
denominator: 2,
},
},
'Supernova': {
rarity: 'common',
Expand All @@ -404,10 +396,7 @@ export const JOKER_DEFINITIONS: Record<JokerName, JokerDefinition> = {
},
'Space Joker': {
rarity: 'uncommon',
probability: {
numerator: 1,
denominator: 4,
},
// Note: I don't apply Space Joker automatically. Instead, users should increase the level of the played hand in the UI.
},
'Egg': {
rarity: 'common',
Expand Down Expand Up @@ -484,10 +473,6 @@ export const JOKER_DEFINITIONS: Record<JokerName, JokerDefinition> = {
},
'Cavendish': {
rarity: 'common',
probability: {
numerator: 1,
denominator: 1000,
},
effect ({ score }) {
score.multiplier *= 3
},
Expand Down Expand Up @@ -594,10 +579,6 @@ export const JOKER_DEFINITIONS: Record<JokerName, JokerDefinition> = {
},
'Reserved Parking': {
rarity: 'uncommon',
probability: {
numerator: 1,
denominator: 2,
},
},
'Mail-in Rebate': {
rarity: 'common',
Expand All @@ -607,10 +588,6 @@ export const JOKER_DEFINITIONS: Record<JokerName, JokerDefinition> = {
},
'Hallucination': {
rarity: 'common',
probability: {
numerator: 1,
denominator: 2,
},
},
'Fortune Teller': {
rarity: 'common',
Expand Down

0 comments on commit 7c00d11

Please sign in to comment.