mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
89 lines
1.5 KiB
TypeScript
89 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
dexId: [37],
|
||
name: {
|
||
en: "Vulpix",
|
||
fr: "Goupix",
|
||
es: "Vulpix",
|
||
it: "Vulpix",
|
||
pt: "Vulpix",
|
||
de: "Vulpix"
|
||
},
|
||
|
||
illustrator: "sui",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Confuse Ray",
|
||
fr: "Onde Folie",
|
||
es: "Rayo Confuso",
|
||
it: "Stordiraggio",
|
||
pt: "Raio da Confusão",
|
||
de: "Konfusstrahl"
|
||
},
|
||
effect: {
|
||
en: "Your opponent's Active Pokémon is now Confused.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Smash Kick",
|
||
fr: "Coud'Pattes",
|
||
es: "Patada Destrucción",
|
||
it: "Calcio Esplosivo",
|
||
pt: "Chute Poderoso",
|
||
de: "Schmetterkick"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 60,
|
||
types: ["Fire"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "While young, it has six gorgeous tails. When it grows, several new tails are sprouted."
|
||
}
|
||
}
|
||
|
||
export default card
|