mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +00:00
43 lines
612 B
TypeScript
43 lines
612 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Destined Rivals"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pineco",
|
|
fr: "Pomdepik",
|
|
de: "Tannza",
|
|
it: "Pineco",
|
|
es: "Pineco",
|
|
pt: "Pineco",
|
|
'es-mx': "Pineco"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Hang Down",
|
|
fr: "Suspension",
|
|
de: "Herunterhängen",
|
|
it: "Tirar Giù",
|
|
es: "Prender",
|
|
pt: "Dependurar",
|
|
'es-mx': "Colgadera"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |