import { Card } from '../../../interfaces' import Set from '../DP Black Star Promos' const card: Card = { name: { en: "Dialga", de: "Dialga" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 483, ], hp: 100, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Time Call", de: "Time Call" }, effect: { en: "Search your deck for a card that evolves from 1 of your Pokémon and put it on that Pokémon. (This counts as evolving that Pokémon.) Shuffle your deck afterward.", de: "Search your deck for a card that evolves from 1 of your Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) Shuffle your deck afterward." }, }, { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Time Wager", de: "Time Wager" }, effect: { en: "Flip 2 coins. If either of them is tails, this attack's base damage is 50 instead of 100.", de: "Flip 2 coins. If either of them is tails, this attack's base damage is 50 instead of 100." }, damage: 100, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card