1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

99 lines
2.0 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Morgrem",
fr: "Fourbelin",
es: "Morgrem",
it: "Morgrem",
pt: "Morgrem",
de: "Pelzebub"
},
illustrator: "Hitoshi Ariga",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Impidimp",
fr: "Grimalin",
es: "Impidimp",
it: "Impidimp",
pt: "Impidimp",
de: "Bähmon"
},
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "False Surrender",
fr: "Fourbette",
es: "Irreverencia",
it: "Supplicolpo",
pt: "Rendição Falsa",
de: "Kniefalltrick"
},
effect: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
es: "El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.",
it: "I danni di questo attacco non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.",
pt: "O dano deste ataque não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.",
de: "Der Schaden dieser Attacke wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
hp: 90,
types: ["Darkness"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "When it gets down on all fours as if to beg for forgiveness, it's trying to lure opponents in so that it can stab them with its spear-like hair."
}
}
export default card