1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00

91 lines
1.6 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 '../Yellow A Alternate'
const card: Card = {
name: {
en: "Alolan Ninetales-GX",
fr: "Feunard dAlola-GX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
38,
],
hp: 210,
types: [
"Water",
],
evolveFrom: {
en: "Alolan Vulpix",
fr: "Goupix dAlola",
},
suffix: "GX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ice Blade",
fr: "Lame de Glace",
},
effect: {
en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 50 dégâts à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Blizzard Edge",
fr: "Lame Tempête",
},
effect: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
},
damage: 160,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ice Path-GX",
fr: "Route Verglacée-GX",
},
effect: {
en: "Move all damage counters from this Pokémon to your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Déplacez tous les marqueurs de dégâts de ce Pokémon vers le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card