1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] e36865e971
editor: fix temporal forces variants (#515)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:57 +02:00

58 lines
833 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Rolycoly",
fr: "Charbi",
es: "Rolycoly",
it: "Rolycoly",
pt: "Rolycoly",
de: "Klonkett"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
es: "Placaje Giro",
it: "Rollazione",
pt: "Golpe de Colisão Rolante",
de: "Rolltackle"
},
damage: 10
}, {
cost: ["Fighting", "Colorless"],
name: {
en: "Power Gem",
fr: "Rayon Gemme",
es: "Joya de Luz",
it: "Gemmoforza",
pt: "Gema Poderosa",
de: "Juwelenkraft"
},
damage: 30
}],
retreat: 3,
regulationMark: "H",
variants: {
holo: false
}
}
export default card