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: "bw2-77", localId: 77, // Card informations name: { en: "Cobalion", fr: "Cobaltium", }, hp: 110, type: [ Type.METAL, ], dexId: 638, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/77/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/77/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/77/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/77/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Metal Horns", fr: "Cornes de Métal", }, text: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.", }, damage: 30 },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS ], name: { en: "Sacred Sword", fr: "Lame Sainte", }, text: { en: "This Pokémon can't use Sacred Sword during your next turn.", fr: "Ce Pokémon ne peut pas utiliser Lame Sainte pendant votre prochain tour.", }, damage: 100 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card