import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ecard2-46", localId: 46, // Card informations name: { en: "Dodrio", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 85, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard2/46/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard2/46/high", }, }, evolveFrom: { en: "Doduo", }, tags: [ Tag.STAGE1, ], illustrator: "Yukiko Baba", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Tri Attack", }, text: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Peck Attack", }, text: { en: "Flip 2 coins. If 1 of them is heads, this attack does 20 damage. If both are heads, this attack does 50 damage. If both are tails, the Defending Pokémon is now Confused.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Aquapolis", code: "ecard2" } } export default card