1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

75 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Raichu",
},
illustrator: "Suwama Chiaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Boosted Voltage",
},
effect: {
en: "If Raichu has a Pokémon Tool card attached to it, this attack does 20 damage to each of your opponent's Benched Pokémon that isn't an Evolved Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Blast",
},
effect: {
en: "Discard a Lightning Energy card attached to Raichu.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card