1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,76 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Umbreon",
fr: "Noctali",
},
illustrator: "Ryota Murayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
197,
],
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Retaliate",
fr: "Vengeance",
},
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during their last turn, this attack does 90 more damage.",
fr: "Si lun de vos Pokémon a été mis K.O. par les dégâts dune attaque de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Dark Cutter",
fr: "TranchObscur",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card