mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
67 lines
1.0 KiB
TypeScript
67 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SM trainer Kit (Alolan Raichu)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Alolan Raichu",
|
||
fr: "Raichu d’Alola",
|
||
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 |