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: "bw9-57", localId: 57, // Card informations name: { en: "Cofagrigus", fr: "Tutankafer", }, hp: 100, type: [ Type.PSYCHIC, ], dexId: 563, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/57/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/57/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/57/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/57/high.png", }, }, evolveFrom: { en: "Yamask", fr: "Tutafeh", }, tags: [ Tag.STAGE1, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Elongating Arms", fr: "Bras à Rallonges", }, text: { en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 30 dégâts à 1 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Crazy Slap", fr: "Gifle Folle", }, text: { en: "Flip 4 coins. This attack does 40 damage times the number of heads.", fr: "Lancez 4 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face.", }, damage: 40 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card