1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00

41 lines
576 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Wiglett",
fr: "Taupikeau",
es: "Wiglett",
it: "Wiglett",
pt: "Wiglett",
de: "Schligda"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
en: "Vibration",
fr: "Vibration",
es: "Vibración",
it: "Vibrazione",
pt: "Vibração",
de: "Schwingung"
},
damage: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card