From f7d23ec993d92cf05da103b277342424e79f7961 Mon Sep 17 00:00:00 2001 From: Ken Irwin Date: Sat, 12 Nov 2022 14:43:34 -0500 Subject: [PATCH 1/3] added Longinus to badCards Longinus is the soldier said to have pierce the side of Jesus during the crucifixion. Per Wikidata, he is believed to have both been born and to have died in the first century CE, but the game interprets his birth date as 100 CE. Definitely incorrect. --- lib/bad-cards.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bad-cards.ts b/lib/bad-cards.ts index 8c48665..5da226b 100644 --- a/lib/bad-cards.ts +++ b/lib/bad-cards.ts @@ -115,7 +115,8 @@ const badCards = { Q1431121: "St Michael's Mount", Q174097: "Hogwarts", Q8690: "Cultural Revolution", - Q149086: "Homicide" + Q149086: "Homicide", + Q319947: "Longinus" }; export default badCards; From e000a944ef0e131bba7b5bb29fee26ce3dcd74a6 Mon Sep 17 00:00:00 2001 From: Ken Irwin Date: Sun, 13 Nov 2022 10:39:45 -0500 Subject: [PATCH 2/3] Update bad-cards.ts same problem as Longinus - Lazarus was a figure from the gospels. he was definitely not born in 100 CE, 70ish years after the death of Jesus --- lib/bad-cards.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bad-cards.ts b/lib/bad-cards.ts index 5da226b..933bc6e 100644 --- a/lib/bad-cards.ts +++ b/lib/bad-cards.ts @@ -117,6 +117,7 @@ const badCards = { Q8690: "Cultural Revolution", Q149086: "Homicide", Q319947: "Longinus" + Q539890: "Lazarus of Bethany" }; export default badCards; From 0e0b51bfaeb20e25242dcaa597db9b41ef4c6423 Mon Sep 17 00:00:00 2001 From: Ken Irwin Date: Sun, 13 Nov 2022 12:43:10 -0500 Subject: [PATCH 3/3] added missing comma in json --- lib/bad-cards.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bad-cards.ts b/lib/bad-cards.ts index 933bc6e..a9256fd 100644 --- a/lib/bad-cards.ts +++ b/lib/bad-cards.ts @@ -116,7 +116,7 @@ const badCards = { Q174097: "Hogwarts", Q8690: "Cultural Revolution", Q149086: "Homicide", - Q319947: "Longinus" + Q319947: "Longinus", Q539890: "Lazarus of Bethany" };