mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
89 lines
2.1 KiB
TypeScript
89 lines
2.1 KiB
TypeScript
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 can’t 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
|