1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

63 lines
1.2 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 '../Neo Destiny'
const card: Card = {
name: {
en: "Shining Raichu",
fr: "Raichu brillant"
},
illustrator: "Hironobu Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Water",
"Water",
],
name: {
en: "Thundersquall",
fr: "Rafale-tonnerre"
},
effect: {
en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to that Pokémon for each Energy attached to Shining Raichu. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Si votre adversaire a des Pokémon sur son Banc, choisissez l'un d'eux et cette attaque inflige 10 dégâts à ce Pokémon pour chaque Énergie attachée à Raichu brillant. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)"
},
damage: 40
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
description: {
fr: "S'il vient à court d'électricité au niveau de ses joues, il dresse sa queue pour collecter l'énergie dans l'air ambiant."
}
}
export default card