mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 01:07:53 +00:00
44 lines
610 B
TypeScript
44 lines
610 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../XY trainer Kit (Wigglytuff)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Pidgeotto",
|
||
fr: "Roucoups",
|
||
es: "Pidgeotto",
|
||
it: "Pidgeotto",
|
||
pt: "Pidgeotto",
|
||
de: "Tauboga"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Colorless"],
|
||
|
||
evolveFrom: {
|
||
en: "Pidgey",
|
||
fr: "Roucool",
|
||
es: "Pidgey",
|
||
it: "Pidgey",
|
||
pt: "Pidgey",
|
||
de: "Taubsi"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
retreat: 1,
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
}]
|
||
}
|
||
|
||
export default card |