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: "pop3-8", localId: 8, // Card informations name: { en: "Donphan", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 232, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop3/8/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop3/8/high.png", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: { id: 106, name: "Tomoaki Imakuni" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Sniff Out", }, text: { en: "Put any 1 card from your discard pile into your hand.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Attack", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "POP Series 3", code: "pop3" } } export default card