1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1018 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unified Minds'
const card: Card = {
name: {
en: "Grimsley",
fr: "Pieris",
es: "Aza",
it: "Mirton",
pt: "Funesto",
de: "Astor"
},
illustrator: "kodama",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Déplacez jusquà 3 marqueurs de dégâts de lun des Pokémon de votre adversaire vers un autre de ses Pokémon.",
en: "Move up to 3 damage counters from 1 of your opponents Pokémon to another of their Pokémon.",
es: "Mueve hasta 3 contadores de daño de 1 de los Pokémon de tu rival a otro de sus Pokémon.",
it: "Sposta fino a tre segnalini danno da uno dei Pokémon del tuo avversario a un altro dei suoi Pokémon.",
pt: "Mova até 3 contadores de dano de 1 dos Pokémon do seu oponente para outro Pokémon dele(a).",
de: "Verschiebe bis zu 3 Schadensmarken von 1 Pokémon deines Gegners auf 1 anderes seiner Pokémon."
},
trainerType: "Supporter",
}
export default card