1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 18:47:50 +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 '../Team Up'
const card: Card = {
name: {
en: "Alolan Ninetales",
fr: "Feunard dAlola",
},
illustrator: "Misa Tsutsui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
38,
],
hp: 110,
types: [
"Fairy",
],
evolveFrom: {
en: "Alolan Vulpix",
fr: "Goupix dAlola",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Luminous Barrier",
fr: "Barrière Lumineuse",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to this Pokémon by your opponent's Pokémon-GX or Pokémon-{EX}.",
fr: "Évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon par les Pokémon-GX ou les Pokémon-{EX} de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Aurora Beam",
fr: "Onde Boréale",
},
damage: 80,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card