mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
63
data/XY/BREAKpoint/61.ts
Normal file
63
data/XY/BREAKpoint/61.ts
Normal file
@ -0,0 +1,63 @@
|
||||
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
|
Reference in New Issue
Block a user