1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00

41 lines
545 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Nymble",
fr: "Lilliterelle",
es: "Nymble",
it: "Nymble",
pt: "Nymble",
de: "Micrick"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Gnaw",
fr: "Ronge",
es: "Roer",
it: "Rosicchiamento",
pt: "Roída",
de: "Nagen"
},
damage: 10
}],
retreat: 0,
regulationMark: "G"
}
export default card