mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
42 lines
544 B
TypeScript
42 lines
544 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Charibari",
|
||
en: "Cufant"
|
||
},
|
||
|
||
illustrator: "0313",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Metal"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Force",
|
||
en: "Strength"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |