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: "np-20", localId: 20, // Card informations name: { en: "Ludicolo", }, hp: 90, type: [ Type.WATER, ], dexId: 272, image: { low: { en: "https://assets.tcgdex.net/en/pop/np/20/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/np/20/high.png", }, }, evolveFrom: { en: "Lombre", }, tags: [ Tag.STAGE2, ], illustrator: { id: 10, name: "Kouki Saitou" }, abilities: [{ id: 264, type: AbilityType.POKEBODY, name: { en: "Rain Dish", }, text: { en: "At any time between turns, remove 1 damage counter from Ludicolo.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Swipes", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Nintendo Black Star Promos", code: "np" } } export default card