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: "ex2-100", localId: 100, // Card informations name: { en: "Wailord ex", }, hp: 200, type: [ Type.WATER, ], dexId: 321, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/100/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/100/high.png", }, }, evolveFrom: { en: "Wailmer", }, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Super Deep Dive", }, text: { en: "If you don't have any Benched Pokémon, this attack does nothing. Remove 3 damage counters from Wailord ex. Switch Wailord ex with 1 of your Benched Pokémon.", }, },{ cost: [ Type.WATER, Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Dwindling Wave", }, text: { en: "Does 100 damage minus 10 damage for each damage counter on Wailord ex.", }, damage: 100 }], weaknesses: [{ type: Type.GRASS, value: "×2" },{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card