From 17ef7efab390d4a1e8701f7e1d7577f02791be7e Mon Sep 17 00:00:00 2001 From: Avior Date: Fri, 7 Feb 2025 00:46:37 +0100 Subject: [PATCH] fix: missing 063 in A1a (#656) Signed-off-by: Avior --- .../Pokémon TCG Pocket/Mythical Island/063.ts | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 data/Pokémon TCG Pocket/Mythical Island/063.ts diff --git a/data/Pokémon TCG Pocket/Mythical Island/063.ts b/data/Pokémon TCG Pocket/Mythical Island/063.ts new file mode 100644 index 000000000..43cc3daa7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/063.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Old Amber" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic C Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item", + rarity: "One Diamond" +} + +export default card