mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
58 lines
833 B
TypeScript
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 |