1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 17ef7efab3
fix: missing 063 in A1a (#656)
Signed-off-by: Avior <git@avior.me>
2025-02-07 00:46:37 +01:00

23 lines
440 B
TypeScript

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