mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
45 lines
625 B
TypeScript
45 lines
625 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Glameow",
|
||
fr: "Chaglam"
|
||
},
|
||
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Colorless"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Cat Kick",
|
||
fr: "Coup d’Patte"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Claw Slash",
|
||
fr: "Tranch’Griffe"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |