mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
76 lines
1.2 KiB
TypeScript
76 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Skyridge'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Umbreon",
|
||
de: "Nachtara"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
197,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
evolveFrom: {
|
||
en: "Eevee",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Dark Gaze",
|
||
de: "Finsterer Blick"
|
||
},
|
||
effect: {
|
||
en: "As long as Umbreon is your Active Pokémon, Benched Pokémon (yours and your opponent's) can't use Poké-Powers.",
|
||
de: "Solange Nachtara dein aktives Pokémon ist, können Pokémon auf der Bank (deine und die deines Gegners) keine Poke-Power verwenden."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sharp Claws",
|
||
de: "Scharfe Klaue"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.",
|
||
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff 10 Schadenspunkte plus 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|