import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Torkoal", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 324, ], hp: 80, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Grind", }, effect: { en: "Does 10 damage times the amount of Energy attached to Torkoal.", }, damage: 10, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Combustion", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card