mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
45 lines
582 B
TypeScript
45 lines
582 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: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Flop",
|
|
fr: "Flop",
|
|
es: "Vuelta",
|
|
it: "Tonfo",
|
|
pt: "Baque",
|
|
de: "Plumps"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |