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

70 lines
1.1 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: "Vulpix",
fr: "Goupix",
de: "Vulpix"
},
illustrator: "Toshinao Aoki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
37,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe",
de: "Scratch"
},
damage: 10,
},
{
name: {
en: "Ascension",
fr: "Ascension",
de: "Ascension"
},
effect: {
en: "Search your deck for a card that evolves from Vulpix and put it on Vulpix. (This counts as evolving Vulpix.) Shuffle your deck afterward.",
fr: "Choisissez dans votre deck une carte qui évolue de Goupix et placez-la sur Goupix. (Vous le faites ainsi évoluer.) Ensuite, mélangez votre deck.",
de: "Search your deck for a card that evolves from Vulpix and put it on Vulpix. (This counts as evolving Vulpix.) Shuffle your deck afterward."
},
cost: ["Fire"]
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card