1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 08:39:54 +00:00

68 lines
920 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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Beldum",
fr: "Terhal",
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
374,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Calculate",
fr: "Calcul",
},
effect: {
en: "Look at the top 4 cards of your deck and put them back on top of your deck in any order.",
fr: "Regardez les 4 cartes du dessus de votre deck et replacez-les sur le dessus de votre deck dans l'ordre de votre choix.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psypunch",
fr: "Coup de Poing Psy",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card