1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

80 lines
1.6 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Ninetales ex",
fr: "Feunard ex",
de: "Vulnona 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",
fr: "Regard intense",
de: "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.",
fr: "Échangez 1 des Pokémon de Banc de votre adversaire avec 1 des Pokémon Défenseurs. Votre adversaire choisit le Pokémon Défenseur à échanger. Le nouveau Pokémon Défenseur est maintenant Brûlé et Confus.",
de: "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",
fr: "Déflagration",
de: "Fire Blast"
},
effect: {
en: "Discard a Fire Energy attached to Ninetales ex.",
fr: "Défaussez une Énergie attachée à Feunard ex.",
de: "Discard a Energy card attached to Ninetales ex."
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card