1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

76 lines
1.5 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 '../Neo Discovery'
const card: Card = {
name: {
en: "Eevee",
fr: "Évoli"
},
illustrator: "Aya Kusube",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
133,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Pokemon Power",
name: {
en: "Energy Evolution",
fr: "Évolution de l'Énergie"
},
effect: {
en: "Whenever you attach an Energy card to Eevee, flip a coin. If heads, search your deck for that evolves from Eevee that is the same type as the Energy card you attached to Eevee. Shuffle your deck afterward. This power can't be used if Eevee is Asleep, Confused, or Paralyzed.",
fr: "Quand vous attachez une carte Énergie à Évoli, lancez une pièce. Si c'est face, cherchez dans votre deck une carte Évolution d'Évoli qui est du même type que la carte Énergie que vous venez de lui attacher. Attachez aussi cette carte à Évoli. Cela revient à le faire évoluer. Mélangez ensuite votre deck. Ce pouvoir ne peut être utilisé si Évoli est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Smash Kick",
fr: "Ruade"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
description: {
fr: "Son ADN instable est affecté par son environnement. Il évolue en fonction des changements de son habitat."
}
}
export default card