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: "ex4-26", localId: 26, // Card informations name: { en: "Team Aqua's Corphish", }, hp: 50, type: [ Type.WATER, ], dexId: 341, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/26/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/26/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 79, name: "Jungo Suzuki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Double Pinchers", }, text: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10 },{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Dark Poison", }, text: { en: "Discard a basic Energy card attached to Team Aqua's Corphish or this attack does nothing. The Defending Pokémon is now Poisoned.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card