1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

77 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 120,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
fr: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Never Give Up",
fr: "Persistance",
},
effect: {
en: "You can use this attack only if you have at least 3 more Prize cards remaining than your opponent. Attach all Lightning Energy cards from your discard pile to your Pokémon in any way you like.",
fr: "Vous ne pouvez utiliser cette attaque que sil vous reste au moins 3 cartes Récompense de plus quà votre adversaire. Attachez toutes les cartes Énergie Lightning de votre pile de défausse à vos Pokémon, de la manière que vous voulez.",
},
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Head Bolt",
fr: "Éclair Frontal",
},
damage: 110,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card