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

46 lines
611 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
dexId: [557],
set: Set,
name: {
en: "Dwebble",
fr: "Crabicoque",
es: "Dwebble",
it: "Dwebble",
pt: "Dwebble",
de: "Lithomith"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Beat",
fr: "Bataille",
es: "Toque",
it: "Battuta",
pt: "Pulso",
de: "Verprügler"
},
damage: 20
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card