import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "dp6-2", localId: 2, // Card informations name: { en: "Dragonite", fr: "Dracolosse", }, hp: 140, type: [ Type.COLORLESS, ], dexId: 149, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp6/2/low", fr: "https://assets.tcgdex.net/fr/dp/dp6/2/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp6/2/high", fr: "https://assets.tcgdex.net/fr/dp/dp6/2/high", }, }, evolveFrom: { en: "Dragonair", fr: "Dragonir", }, tags: [ Tag.STAGE2, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Beam", fr: "Ultralaser", }, text: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Draco Meteor", fr: "Draco Météor", }, text: { en: "Flip a coin for each of your opponent's Pokémon. If that coin flip is heads, this attack does 50 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Lancez une pièce pour chaque Pokémon que possède votre adversaire. Si c'est une face, cette attaque inflige 50 dégâts au Pokémon correspondant. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc).", }, }], weaknesses: [{ type: Type.COLORLESS, value: "+30" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legends Awakened", code: "dp6" } } export default card