1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@ -5,23 +5,27 @@ 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",
stage: "Stage1",
attacks: [
{
@ -35,7 +39,7 @@ const card: Card = {
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
},
damage: 30,
damage: "30×",
},
{
@ -44,21 +48,26 @@ const card: Card = {
"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.",
en: "If Raichu evolved from Pikachu during this turn, this attacks base damage is 100 instead of 60.",
},
damage: 60
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
value: "+20"
},
],
resistances: [
{
type: "Metal",
@ -66,9 +75,18 @@ const card: Card = {
},
],
retreat: 1,
description: {
en: "It can loose 100,000-volt bursts of electricity, instantly downing foes several times its size."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card