mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
44 lines
603 B
TypeScript
44 lines
603 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../XY trainer Kit (Bisharp)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Doublade",
|
||
fr: "Dimoclès",
|
||
es: "Doublade",
|
||
it: "Doublade",
|
||
pt: "Doublade",
|
||
de: "Duokles"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Metal"],
|
||
|
||
evolveFrom: {
|
||
en: "Honedge",
|
||
fr: "Monorpale",
|
||
es: "Honedge",
|
||
it: "Honedge",
|
||
pt: "Honedge",
|
||
de: "Gramokles"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
retreat: 2,
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
}]
|
||
}
|
||
|
||
export default card |