1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

42 lines
579 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"
}
export default card