1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Duncan 2b6d06184d
fix: Add SV08 Surging Sparks card variants (#592)
* fix: Add SV08 Surging Sparks card variants

* fix: Fix validate by adding 'abbreviation' to Set interface
2024-12-01 23:26:45 +01:00

66 lines
906 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Rellor",
fr: "Léboulérou",
es: "Rellor",
it: "Rellor",
pt: "Rellor",
de: "Relluk"
},
rarity: "Common",
category: "Pokemon",
hp: 40,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Collect",
fr: "Collecte",
es: "Coleccionar",
it: "Tassa",
pt: "Coleta",
de: "Sammeln"
},
effect: {
en: "Draw a card.",
fr: "Piochez une carte.",
es: "Roba 1 carta.",
it: "Pesca una carta.",
pt: "Compre uma carta.",
de: "Ziehe 1 Karte."
}
}, {
cost: ["Grass"],
name: {
en: "Rollout",
fr: "Roulade",
es: "Rodar",
it: "Rotolamento",
pt: "Rolagem",
de: "Walzer"
},
damage: 10
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card