1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00

64 lines
855 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Doublade",
fr: "Dimoclès",
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
680,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Honedge",
fr: "Monorpale",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Stab Deeply",
fr: "Blessure Profonde",
},
effect: {
en: "Put 3 damage counters on your opponent's Active Pokémon.",
fr: "Placez 3 marqueurs de dégâts sur le Pokémon Actif de votre adversaire.",
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card