1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

46 lines
598 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
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: ["Grass", "Grass"],
name: {
en: "Rollout",
fr: "Roulade",
es: "Rodar",
it: "Rotolamento",
pt: "Rolagem",
de: "Walzer"
},
damage: 30
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card