import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Raikou & Suicune LEGEND", fr: "Raikou & Suicune LÉGENDE (haut)", }, illustrator: "Shinji Higuchi + Noriko Takaya", rarity: "Ultra Rare", category: "Pokemon", set: Set, dexId: [ 243, ], hp: 160, types: [ "Lightning", "Water", ], suffix: "Legend", stage: "Basic", retreat: 0, variants: { normal: false, reverse: false, holo: true, firstEdition: false } } export default card