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

80 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Power Keepers'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu",
de: "Raichu"
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Plasma",
fr: "Plasma",
de: "Plasma"
},
effect: {
en: "Search your discard pile for a Lightning Energy card and attach it to Raichu.",
fr: "Cherchez dans votre pile de défausse une carte Énergie et attachez-la à Raichu.",
de: "Durchsuche deinen Ablagestapel nach einer -Energiekarte und lege sie an Raichu an."
},
damage: 10,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunderbolt",
fr: "Tonnerre",
de: "Donnerblitz"
},
effect: {
en: "Discard all Energy cards attached to Raichu.",
fr: "Défaussez toutes les cartes Énergie attachées à Raichu.",
de: "Entferne alle an Raichu angelegten Energiekarten und lege sie auf deinen Ablagestapel."
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card