mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
103 lines
1.9 KiB
TypeScript
103 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Raichu",
|
|
fr: "Raichu",
|
|
de: "Raichu"
|
|
},
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
26,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
evolveFrom: {
|
|
en: "Pikachu",
|
|
fr: "Pikachu",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Slice",
|
|
fr: "Mettre en tranche",
|
|
de: "Schnippeln"
|
|
},
|
|
effect: {
|
|
en: "Raichu can't use Slice during your next turn.",
|
|
fr: "Raichu ne peut pas utiliser Mettre en tranche lors de votre prochain tour.",
|
|
de: "Raichu kann Schnippeln während deines nächsten Zug nicht einsetzen."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Split Ball",
|
|
fr: "Balle coupée",
|
|
de: "Zerteilball"
|
|
},
|
|
effect: {
|
|
en: "Move an Energy card attached to Raichu to 1 of your Benched Pokémon.",
|
|
fr: "Déplacez une carte Énergie attachée à Raichu sur 1 de vos Pokémon de Banc.",
|
|
de: "Entferne 1 an Raichu angelegte Energiekarte und lege sie an 1 Pokémon auf deiner Bank an."
|
|
},
|
|
damage: 50,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Burst Ball",
|
|
fr: "Balle explosive",
|
|
de: "Sprengball"
|
|
},
|
|
effect: {
|
|
en: "Discard 3 Energy attached to any of your Pokémon in any way you like.",
|
|
fr: "Défaussez 3 Énergies attachées à n'importe lequel de vos Pokémon de la façon que vous voulez.",
|
|
de: "Entferne in beliebiger Verteilung 3 Energien, die an deinen Pokémon angelegt sind und lege sie auf deinen Ablagestapel."
|
|
},
|
|
damage: 100,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Metal",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|