1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

82 lines
1.3 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 '../BW Black Star Promos'
const card: Card = {
name: {
en: "Umbreon",
fr: "Noctali",
},
illustrator: "Illus.Direc.The Pokémon Company Art Team",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
197,
],
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Shadow Drain",
fr: "Sangsue de l'Ombre",
},
effect: {
en: "Heal from this Pokémon the same amount of damage you did to the Defending Pokémon.",
fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Défenseur.",
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup Déchirant",
},
effect: {
en: "This Pokémon can't use Slashing Strike during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Coup Déchirant pendant votre prochain tour.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card