1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 15:19:55 +00:00

75 lines
945 B
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 '../POP Series 9'
const card: Card = {
name: {
en: "Raichu",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slam",
},
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "High Volt",
},
effect: {
en: "If Raichu evolved from Pikachu during this turn, this attack's base damage is 100 instead of 60.",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card