mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
42 lines
623 B
TypeScript
42 lines
623 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rolycoly",
|
||
fr: "Charbi"
|
||
},
|
||
|
||
illustrator: "SATOSHI NAKAI",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Reckless Charge",
|
||
fr: "Attaque Imprudente"
|
||
},
|
||
|
||
effect: {
|
||
en: "This Pokémon also does 10 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige aussi 10 dégâts."
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Fighting"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |