mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
79 lines
1.1 KiB
TypeScript
79 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragons Exalted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Garchomp",
|
||
fr: "Carchacrok",
|
||
es: "Garchomp",
|
||
it: "Garchomp",
|
||
pt: "Garchomp",
|
||
de: "Knakrack"
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
445,
|
||
],
|
||
hp: 140,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
evolveFrom: {
|
||
en: "Gabite",
|
||
fr: "Carmache",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
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",
|
||
"Fighting",
|
||
],
|
||
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
|