mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
856 B
TypeScript
59 lines
856 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Twilight Masquerade"
|
|
|
|
const card: Card = {
|
|
dexId: [190],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Aipom",
|
|
fr: "Capumain",
|
|
es: "Aipom",
|
|
it: "Aipom",
|
|
pt: "Aipom",
|
|
de: "Griffel"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Hang Down",
|
|
fr: "Suspension",
|
|
es: "Prender",
|
|
it: "Tirar Giù",
|
|
pt: "Dependurar",
|
|
de: "Herunterhängen"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Playful Kick",
|
|
fr: "Coup de Pied de Garnement",
|
|
es: "Patada Juguetona",
|
|
it: "Calcio Briccone",
|
|
pt: "Chute Brincalhão",
|
|
de: "Verspielter Kick"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |