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

66 lines
1.0 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Ninetales δ",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
38,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Vulpix",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Volunteer",
},
effect: {
en: "Once during your turn (before your attack), you may remove 4 damage counters from Ninetales and discard Ninetales from Vulpix. If you do, search your deck for Ninetales or Ninetales ex and put it onto Vulpix (this counts as evolving Vulpix). Shuffle your deck afterward.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Trick Tail",
},
effect: {
en: "Search your discard pile for an Energy card and attach it to 1 of your Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card