1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Drampa",
fr: "Draïeul",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
780,
],
hp: 120,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dragon Arcana",
fr: "Savoir Draconique",
},
effect: {
en: "If this Pokémon has 2 or more different types of basic Energy attached to it, this attack does 70 more damage.",
fr: "Si 2 types dÉnergie de base ou plus sont attachées à ce Pokémon, cette attaque inflige 70 dégâts supplémentaires.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card