1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29: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,74 @@
import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Garchomp",
fr: "Carchacrok",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
445,
],
hp: 140,
types: [
"Dragon",
],
evolveFrom: {
en: "Gabite",
fr: "Carmache",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Mach Cut",
fr: "Coupe Vive",
},
effect: {
en: "Discard a Special Energy attached to the Defending Pokémon.",
fr: "Défaussez une Énergie spéciale attachée au Pokémon Défenseur.",
},
damage: 60,
},
{
cost: [
"Water",
"Fightning",
],
name: {
en: "Dragonblade",
fr: "Draco-Lame",
},
effect: {
en: "Discard the top 2 cards of your deck.",
fr: "Défaussez les 2 cartes du dessus de votre deck.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 1,
}
export default card