1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
TCGdex [Bot] e7ceb7ac59
editor: correct variants for Paradox Rift (#513)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:39 +02:00

55 lines
973 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
dexId: [444],
set: Set,
name: {
en: "Gabite",
fr: "Carmache",
es: "Gabite",
it: "Gabite",
pt: "Gabite",
de: "Knarksel"
},
rarity: "Common",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
en: "Power Blast",
fr: "Violente Déflagration",
es: "Estallido Vigoroso",
it: "Forzacolpo",
pt: "Explosão Poderosa",
de: "Powerschuss"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta un'Energia da questo Pokémon.",
pt: "Descarte uma Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 50
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card