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: "ecard3-89", localId: 89, // Card informations name: { en: "Raticate", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 20, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/89/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/89/high", }, }, evolveFrom: { en: "Rattata", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Continuous Bite", }, text: { en: "Flip 3 coins. If you get 1 heads, this attack does 10 damage plus 10 more damage. If you get 2 heads, this attack does 10 damage plus 30 more damage. If you get 3 heads, this attack does 10 damage plus 60 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card