import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Typhlosion ex", }, illustrator: "Hikaru Koike", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 157, ], hp: 160, types: [ "Fire", ], evolveFrom: { en: "Quilava", }, suffix: "EX", attacks: [ { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Ring of Fire", }, effect: { en: "The Defending Pokémon is now Burned, and can't retreat until the end of your opponent's next turn.", }, damage: 40, }, { cost: [ "Fire", "Fire", "Fire", "Colorless", "Colorless", ], name: { en: "Split Blast", }, effect: { en: "Discard 1 Energy card attached to Typhlosion ex. If your opponent has more than 1 Defending Pokémon, you may do 50 damage to each of them instead.", }, damage: 100, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, { type: "Water", value: "×2" }, ], } export default card