mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
50 lines
805 B
TypeScript
50 lines
805 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Charbi",
|
||
en: "Rolycoly",
|
||
es: "Rolycoly",
|
||
it: "Rolycoly",
|
||
pt: "Rolycoly",
|
||
de: "Klonkett"
|
||
},
|
||
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Shiny rare",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Collision",
|
||
en: "Ram",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Aríete",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Most of its body has the same composition as coal. Fittingly, this Pokémon was first discovered in coal mines about 400 years ago."
|
||
}
|
||
}
|
||
|
||
export default card |