1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

51 lines
739 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"
},
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"
},
damage: 10
}, {
cost: ["Fighting", "Colorless"],
name: {
en: "Power Gem",
fr: "Rayon Gemme",
es: "Joya de Luz",
it: "Gemmoforza",
pt: "Gema Poderosa"
},
damage: 30
}],
retreat: 3,
regulationMark: "H"
}
export default card