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

79 lines
1.3 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 '../Delta Species'
const card: Card = {
name: {
en: "Beldum δ",
fr: "Terhal δ",
de: "Tanhel"
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
374,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Conductive Body",
fr: "Corps conducteur",
de: "Conductive Body"
},
effect: {
en: "You pay Colorless to retreat Beldum for each Beldum on your Bench.",
fr: "Tant que Terhal est votre Pokémon Actif, vous payez un de moins pour faire battre Terhal en retraite pour chaque Terhal se trouvant sur votre Banc.",
de: "As long as Beldum is your Active Pokémon, you pay less to retreat Beldum for each Beldum on your Bench."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Take Down"
},
effect: {
en: "Beldum does 10 damage to itself.",
fr: "Terhal s'inflige 10 dégâts.",
de: "Beldum does 10 damage to itself."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card