mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 13:59:55 +00:00
67 lines
1.6 KiB
TypeScript
67 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Majestic Dawn'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Garchomp",
|
||
fr: "Carchacrok",
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
445,
|
||
],
|
||
hp: 140,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
evolveFrom: {
|
||
fr: "Level-Up",
|
||
},
|
||
stage: "LEVEL-UP",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Dragon Pulse",
|
||
fr: "Dracochoc",
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), when you put Garchomp LV.X from your hand onto your Active Garchomp, you may flip 3 coins. For each heads, put 1 damage counter on each of your opponent's Benched Pokémon.",
|
||
fr: "Une seule fois lors de votre tour (avant votre attaque), lorsque vous placez Carchacrok LV.X de votre main sur votre Carchacrok Actif, vous pouvez lancer 3 pièces. Pour chaque face, placez 1 marqueur de dégât sur chacun des Pokémon de Banc de votre adversaire.",
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
|
||
name: {
|
||
en: "Restore",
|
||
fr: "Restituer",
|
||
},
|
||
effect: {
|
||
en: "Search your discard pile for a Pokémon (excluding Pokémon LV.X) and put it onto your Bench as a Basic Pokémon. Then, you may search your discard pile for up to 3 basic Energy cards and attach them to that Pokémon.",
|
||
fr: "Choisissez un Pokémon dans votre pile de défausse (Pokémon LV.X exclus) et placez-le sur votre Banc comme un Pokémon de base. Ensuite, vous pouvez choisir dans votre pile de défausse jusqu'à 3 cartes Énergie de base et les attacher à ce Pokémon.",
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Colorless",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|