mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
58 lines
859 B
TypeScript
58 lines
859 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [38],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Ninetales",
|
|
fr: "Feunard",
|
|
es: "Ninetales",
|
|
it: "Ninetales",
|
|
pt: "Ninetales",
|
|
de: "Vulnona"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Fire"],
|
|
|
|
evolveFrom: {
|
|
en: "Vulpix",
|
|
fr: "Goupix",
|
|
es: "Vulpix",
|
|
it: "Vulpix",
|
|
pt: "Vulpix",
|
|
de: "Vulpix"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "kirisAki",
|
|
|
|
description: {
|
|
en: "Very smart and very vengeful. Grabbing one of its many tails could result in a 1,000-year curse."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Supernatural Flames"
|
|
},
|
|
|
|
damage: 70
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |