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: "ex3-33", localId: 33, // Card informations name: { en: "Horsea", }, hp: 40, type: [ Type.WATER, ], dexId: 116, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex3/33/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex3/33/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Retaliate", }, text: { en: "Flip a coin. If heads, this attack does 10 damage times the number of damage counters on Horsea.", }, damage: 10 },{ cost: [ Type.WATER ], name: { en: "Smokescreen", }, text: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 10 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dragon", code: "ex3" } } export default card