1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

74
data/XY/BREAKpoint/70.ts Normal file
View File

@ -0,0 +1,74 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Garchomp",
fr: "Carchacrok",
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
445,
],
hp: 130,
types: [
"Fightning",
],
evolveFrom: {
en: "Gabite",
fr: "Carmache",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Turbo Assault",
fr: "Assaut Turbo",
},
effect: {
en: "Attach an Energy card from your discard pile to 1 of your Pokémon.",
fr: "Attachez une carte Énergie de votre pile de défausse à l'un de vos Pokémon.",
},
damage: 60,
},
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Bite Off",
fr: "Arrachage",
},
effect: {
en: "If your opponent's Active Pokémon is a Pokémon-EX, this attack does 80 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-EX, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card