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
45 lines
585 B
TypeScript
45 lines
585 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Grimalin",
|
||
en: "Impidimp"
|
||
},
|
||
|
||
illustrator: "Misa Tsutsui",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Darkness"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Bataille",
|
||
en: "Beat"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Darkness"]
|
||
}, {
|
||
name: {
|
||
fr: "Ruée",
|
||
en: "Stampede"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Darkness", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |