1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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