import { Card } from '../../../interfaces' import Set from '../Platinum' const card: Card = { name: { en: "Dialga", fr: "Dialga", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 483, ], hp: 100, types: [ "Metal", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Reverse Time", fr: "Temps inverse", }, effect: { en: "Once during your turn, when you put Dialga from your hand onto your Bench, you may search your discard pile for up to 3 in any combination of Pokémon (excluding Pokémon LV.X) and basic Energy cards. Show them to your opponent and put them on top of your deck in any order.", fr: "Une seule fois lors de votre tour, lorsque vous placez Dialga de votre main sur votre Banc, vous pouvez chercher dans votre pile de défausse n'importe quelle combinaison de jusqu'à 3 Pokémon (Pokémon NIV.X exclus) et cartes Énergie de base. Montrez-les à votre adversaire et placez-les au dessus de votre deck dans n'importe quel ordre.", }, }, ], attacks: [ { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Time-Space Traveling", fr: "Voyage espace-temps", }, effect: { en: "Draw cards until you have 7 cards in your hand.", fr: "Piochez des cartes jusqu'à ce que vous ayez 7 cartes en main.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 3, } export default card