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: "sm10-150", localId: 150, // Card informations name: { en: "Doduo", fr: "Doduo", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 84, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/150/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/150/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/150/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/150/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 36, name: "kodama" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Peck", fr: "Picpic", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Peck", fr: "Double Picpic", }, text: { en: "Flip 2 coins. This attack does 20 damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card