1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/026.ts

48 lines
712 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Ninetales"
},
illustrator: "AKIRA EGAWA",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Fire"],
evolveFrom: {
en: "Vulpix"
},
description: {
en: "It is said to live 1,000 years, and each of its tails\nis loaded with supernatural powers."
},
stage: "Stage1",
attacks: [{
name: {
en: "Scorching Breath"
},
damage: 120,
cost: ["Fire", "Fire", "Colorless"],
effect: {
en: "During your next turn, this Pokémon can't attack."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card