import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "dpp-DP49", localId: "DP49", // Card informations name: { en: "Dialga", }, hp: 100, type: [ Type.METAL, ], dexId: 483, image: { low: { en: "https://assets.tcgdex.net/en/dp/dpp/DP49/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dpp/DP49/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.METAL ], name: { en: "Time Call", }, text: { 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.", }, },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Time Wager", }, text: { en: "Flip 2 coins. If either of them is tails, this attack's base damage is 50 instead of 100.", }, damage: 100 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "DP Black Star Promos", code: "dpp" } } export default card