1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 22:09:18 +00:00
Files
cards-database/data/Call of Legends/Call of Legends/22.ts
2021-05-26 14:51:02 +02:00

74 lines
1020 B
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 '../Call of Legends'
const card: Card = {
name: {
en: "Umbreon",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
197,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Moonlight Fang",
},
effect: {
en: "During your opponent's next turn, prevent all effects, including damage, done to Umbreon by attacks from your opponent's Pokémon that has any Poké-Powers or Poké-Bodies.",
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Quick Blow",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card