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: "si1-9", localId: 9, // Card informations name: { en: "Butterfree", }, hp: 80, type: [ Type.GRASS, ], dexId: 12, image: { low: { en: "https://assets.tcgdex.net/en/neo/si1/9/low", }, high: { en: "https://assets.tcgdex.net/en/neo/si1/9/high", }, }, evolveFrom: { en: "Metapod", }, tags: [ Tag.STAGE2, ], illustrator: "Keiko Fukuyama", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fly", }, text: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Butterfree. If tails, this attack does nothing (not even damage).", }, damage: 30 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Rainbow Powder", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Poisoned.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Southern Islands", code: "si1" } } export default card