1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

70 lines
953 B
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 '../Hidden Legends'
const card: Card = {
name: {
en: "Ninetales ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
38,
],
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Vulpix",
},
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Intense Glare",
},
effect: {
en: "Switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch. The new Defending Pokémon is now Burned and Confused.",
},
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Fire Blast",
},
effect: {
en: "Discard a Fire Energy attached to Ninetales ex.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card