mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
67
data/Trainer kits/SM trainer Kit (Alolan Raichu)/30.ts
Normal file
67
data/Trainer kits/SM trainer Kit (Alolan Raichu)/30.ts
Normal file
@ -0,0 +1,67 @@
|
||||
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
|
Reference in New Issue
Block a user