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: "ex6-21", localId: 21, // Card informations name: { en: "Dodrio", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 85, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/21/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/21/high.png", }, }, evolveFrom: { en: "Doduo", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, abilities: [{ id: 18, type: AbilityType.POKEBODY, name: { en: "Retreat Aid", }, text: { en: "As long as Dodrio is on your Bench, you pay Colorless Colorless less to retreat your Active Pokémon (excluding Pokémon-ex and Baby Pokémon).\"", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tri Attack", }, text: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card