1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +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

89 lines
2.1 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 '../Unified Minds'
const card: Card = {
name: {
en: "Beheeyem",
fr: "Neitram",
es: "Beheeyem",
it: "Beheeyem",
pt: "Beheeyem",
de: "Megalon"
},
illustrator: "Kyoko Umemoto",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
606,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Elgyem",
fr: "Lewsor",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Psypunch",
fr: "Coup de Poing Psy",
es: "Psicopuño",
it: "Psicopugno",
pt: "Soco Psíquico",
de: "Psyhieb"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Mysterious Noise",
fr: "Bruit Mystérieux",
es: "Ruido Misterioso",
it: "Rumore Misterioso",
pt: "Ruído Misterioso",
de: "Geheimnisvolle Laute"
},
effect: {
en: "Shuffle this Pokémon and all cards attached to it into your deck. Your opponent cant play any Item cards from their hand during their next turn.",
fr: "Mélangez ce Pokémon et toutes les cartes qui lui sont attachées avec votre deck. Votre adversaire ne peut pas jouer de carte Objet de sa main pendant son prochain tour.",
es: "Pon este Pokémon y todas las cartas unidas a él en tu baraja, y barájalas todas. Tu rival no puede jugar ninguna carta de Objeto de su mano durante su próximo turno.",
it: "Rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo. Il tuo avversario non può giocare le carte Strumento che ha in mano durante il suo prossimo turno.",
pt: "Embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho. Seu oponente não poderá jogar nenhuma carta de Item da própria mão durante a próxima vez dele(a) jogar.",
de: "Mische dieses Pokémon und alle an es angelegten Karten in dein Deck. Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen."
},
damage: 90,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card