mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
39 lines
550 B
TypeScript
39 lines
550 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../XY trainer Kit (Bisharp)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Vigoroth",
|
||
fr: "Vigoroth",
|
||
es: "Vigoroth",
|
||
it: "Vigoroth",
|
||
pt: "Vigoroth",
|
||
de: "Muntier"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Colorless"],
|
||
|
||
evolveFrom: {
|
||
en: "Slakoth",
|
||
fr: "Parecool",
|
||
es: "Slakoth",
|
||
it: "Slakoth",
|
||
pt: "Slakoth",
|
||
de: "Bummelz"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
retreat: 2,
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}]
|
||
}
|
||
|
||
export default card |