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: "ex15-66", localId: 66, // Card informations name: { en: "Taillow δ", }, hp: 40, type: [ Type.FIRE, ], dexId: 276, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/66/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/66/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "Miki Tanaka" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Quick Attack", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card