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-18", localId: 18, // Card informations name: { en: "Team Aqua's Sharpedo", }, hp: 70, type: [ Type.WATER, ], dexId: 319, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/18/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/18/high.png", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: { id: 76, name: "Katsura Tabata" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Slow-Acting Poison", }, text: { en: "At the end of your opponent's next turn, the Defending Pokémon is now Poisoned.", }, damage: 20 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Aqua Smash", }, text: { en: "If the Defending Pokémon is affected by a Special Condition, this attack does 50 damage plus 20 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card