1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon c52ed815bb
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas

Signed-off-by: Avior <git@avior.me>

* feat: Add cards

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2024-12-03 09:32:33 +01:00

41 lines
557 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Pineco",
fr: "Pomdepik",
es: "Pineco",
it: "Pineco",
pt: "Pineco",
de: "Tannza"
},
rarity: "None",
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"
}
export default card