1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 10:19:18 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/020.ts
TCGdex [Bot] 0475848425 editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

45 lines
589 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Smoliv",
fr: "Olivini",
es: "Smoliv",
it: "Smoliv",
pt: "Smoliv",
de: "Olini"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 30
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card