1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

78 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 '../Promos'
const card: Card = {
name: {
en: "Alolan Raichu",
fr: "Raichu dAlola",
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 110,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
fr: "Pikachu",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Surge Surfer",
fr: "Surf Caudal",
},
effect: {
en: "If there is any Stadium card in play, this Pokémon has no Retreat Cost.",
fr: "Sil y a une carte Stade en jeu, ce Pokémon na pas de Coût de Retraite.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Psychic",
fr: "Psyko",
},
effect: {
en: "This attack does 20 more damage times the amount of Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre dÉnergies attachées au Pokémon Actif de votre adversaire.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card