mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
34 lines
485 B
TypeScript
34 lines
485 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SM trainer Kit (Alolan Raichu)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Spearow",
|
||
fr: "Piafabec",
|
||
es: "Spearow",
|
||
it: "Spearow",
|
||
pt: "Spearow",
|
||
de: "Habitak"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Colorless"],
|
||
stage: "Basic",
|
||
retreat: 1,
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
}]
|
||
}
|
||
|
||
export default card |