1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

42 lines
584 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
dexId: [204],
set: Set,
name: {
en: "Pineco",
fr: "Pomdepik",
es: "Pineco",
it: "Pineco",
pt: "Pineco",
de: "Tannza"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 50
}],
retreat: 2,
regulationMark: "H"
}
export default card