1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

97 lines
1.3 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu",
es: "Raichu",
it: "Raichu",
pt: "Raichu",
de: "Raichu"
},
illustrator: "Hasuno",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 130,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Pain-Full Punch",
fr: "Mise au Poing",
es: "Puño Doloroso",
it: "Dolorpugno",
pt: "Soco Doloroso",
de: "Schmerzhafter Hieb"
},
damage: 40,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Mach Bolt",
fr: "Éclair Fulgurant",
es: "Rayo Mach",
it: "Fulmine Mach",
pt: "Raio Supersônico",
de: "Flotter Sprung"
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "Its long tail serves as a ground to protect itself from its own high-voltage power."
},
dexId: [26]
}
export default card