1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00

41 lines
564 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
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"
}
export default card