mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
98 lines
2.6 KiB
TypeScript
98 lines
2.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKthrough'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Beheeyem",
|
||
fr: "Neitram",
|
||
es: "Beheeyem",
|
||
it: "Beheeyem",
|
||
pt: "Beheeyem",
|
||
de: "Megalon"
|
||
},
|
||
illustrator: "Tomokazu Komiya",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
606,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
evolveFrom: {
|
||
en: "Elgyem",
|
||
fr: "Lewsor",
|
||
es: "Elgyem",
|
||
it: "Elgyem",
|
||
pt: "Elgyem",
|
||
de: "Pygraulon"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Mind Bullet",
|
||
fr: "Ball'Esprit",
|
||
es: "Bala Mental",
|
||
it: "Psicodardo",
|
||
pt: "Projétil de Mente",
|
||
de: "Gedankengeschoss"
|
||
},
|
||
effect: {
|
||
en: "This attack does 20 damage to 1 of your opponent's Pokémon times the amount of Energy attached to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige 20 dégâts à l'un des Pokémon de votre adversaire multipliés par le nombre d'Énergies lui étant attachées. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
es: "Este ataque hace 20 puntos de daño a 1 de los Pokémon de tu rival por cada Energía unida a ese Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||
it: "Questo attacco infligge 20 danni a uno dei Pokémon del tuo avversario per ogni Energia assegnata a quel Pokémon. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
|
||
pt: "Este ataque causa 20 de danos a 1 dos Pokémon do seu oponente vezes a quantidade de Energia ligada a aquele Pokémon. (Não aplique Fraqueza e Resistência a Pokémon no Banco.)",
|
||
de: "Dieser Angriff fügt 1 Pokémon deines Gegners 20 Schadenspunkte mal der Anzahl der an jenes Pokémon angelegten Energien zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Psybeam",
|
||
fr: "Rafale Psy",
|
||
es: "Psicorrayo",
|
||
it: "Psicoraggio",
|
||
pt: "Feixe Psíquico",
|
||
de: "Psystrahl"
|
||
},
|
||
effect: {
|
||
en: "Your opponent's Active Pokémon is now Confused.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|