mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rising Rivals'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mismagius GL",
|
||
fr: "Magirêve Niv. 26",
|
||
de: "Traunmagil GL"
|
||
},
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Rare Holo",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
429,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Psychic Removal",
|
||
fr: "Psycho-suppression",
|
||
de: "Telepathisches Entfernen"
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. If both of them are heads, discard all Energy attached to the Defending Pokémon.",
|
||
fr: "Lancez 2 pièces. Si ce sont 2 faces, défaussez toute l'Énergie attachée au Pokémon Défenseur.",
|
||
de: "Wirf 2 Münzen. Wenn beide Münzen \"Kopf\" gezeigt haben, lege alle Energien, die am Verteidigenden Pokémon angelegt sind, auf den Ablagestapel deines Gegners."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Grudge",
|
||
fr: "Rancune",
|
||
de: "Nachspiel"
|
||
},
|
||
effect: {
|
||
en: "Does 20 damage plus 10 more damage for each Prize card your opponent has taken.",
|
||
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récolté.",
|
||
de: "Dieser Angriff fügt 20 Schadenspunkte plus 10 weitere Schadenspunkte für jeden Preis, den dein Gegner bereits genommen hat, zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Colorless",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|