1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

67 lines
1.0 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 '../SM trainer Kit (Alolan Raichu)'
const card: Card = {
set: Set,
name: {
en: "Alolan Raichu",
fr: "Raichu dAlola",
es: "Raichu de Alola",
it: "Raichu di Alola",
pt: "Raichu de Alola",
de: "Alola-Raichu"
},
rarity: "None",
category: "Pokemon",
hp: 110,
types: ["Lightning"],
evolveFrom: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
stage: "Stage1",
retreat: 1,
illustrator: "5ban Graphics",
description: {
en: "It only evolves to this form in the Alola region. According to researchers, its diet is one of the causes of this change."
},
attacks: [{
name: {
en: "Quick Attack"
},
damage: "10+",
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage."
}
}, {
name: {
en: "Electric Surfer"
},
damage: 70
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
resistances: [{
type: "Metal",
value: "-20"
}]
}
export default card