mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 06:39:50 +00:00
44
data/Trainer kits/XY trainer Kit (Sylveon)/14.ts
Normal file
44
data/Trainer kits/XY trainer Kit (Sylveon)/14.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../XY trainer Kit (Sylveon)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Granbull",
|
||||
fr: "Granbull",
|
||||
es: "Granbull",
|
||||
it: "Granbull",
|
||||
pt: "Granbull",
|
||||
de: "Granbull"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fairy"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Snubbull",
|
||||
fr: "Snubbull",
|
||||
es: "Snubbull",
|
||||
it: "Snubbull",
|
||||
pt: "Snubbull",
|
||||
de: "Snubbull"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 3,
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Darkness",
|
||||
value: "-20"
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user