1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

47 lines
987 B
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 "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Beheeyem",
fr: "Neitram",
es: "Beheeyem",
it: "Beheeyem",
pt: "Beheeyem"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
stage: "Stage1",
attacks: [{
cost: ["Psychic"],
name: {
en: "Cosmic Beatdown",
fr: "Dérouillée Cosmique",
es: "Porrazo Cósmico",
it: "Cosmobatosta",
pt: "Abater Cósmico"
},
effect: {
en: "This attack does 20 damage for each of your Pokémon in play.",
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon en jeu.",
es: "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon en juego.",
it: "Questo attacco infligge 20 danni per ogni tuo Pokémon in gioco.",
pt: "Este ataque causa 20 pontos de dano para cada um dos seus Pokémon em jogo."
},
damage: "20×"
}],
retreat: 1,
regulationMark: "H"
}
export default card