1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
2024-12-19 11:52:36 +01:00

79 lines
1.8 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 '../Holon Phantoms'
const card: Card = {
name: {
en: "Raichu δ",
fr: "Raichu δ",
de: "Raichu"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 70,
types: [
"Metal",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Zzzap",
fr: "Zzzap",
de: "Zzzapp!"
},
effect: {
en: "Does 20 damage to each Pokémon that has any Poké-Powers or Poké-Bodies (both yours and your opponent's). Don't apply Weakness or Resistance.",
fr: "Inflige 20 dégâts à chaque Pokémon possédant des Poké-Powers ou des Poké-Bodies (les vôtres et ceux de votre adversaire). Vous ne pouvez pas appliquer la Faiblesse ou la Résistance.",
de: "Dieser Angriff fügt jedem Pokémon im Spiel, das Poké-Power oder Poké-Body hat, 20 Schadenspunkte zu (deinen und den gegnerischen). Wende Schwäche und Resistenz nicht an."
},
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Metallic Thunder",
fr: "Tonnerre métallique",
de: "Metallischer Donner"
},
effect: {
en: "You may discard 2 Metal Energy attached to Raichu. If you do, this attack's base damage is 90 instead of 50.",
fr: "Vous pouvez défausser 2 Énergies attachées à Raichu. Les dégâts de base de cette attaque sont alors de 90 au lieu de 50.",
de: "Du kannst 2 -Energien, die an Raichu angelegt sind, auf deinen Ablagestapel legen. Wenn du das machst, beträgt der Grundschaden dieses Angriffs 90 Schadenspunkte anstelle von 50 Schadenspunkten."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card