mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* Added most sets Signed-off-by: Avior <github@avior.me> * Fixed cards missing name Signed-off-by: Avior <github@avior.me>
43 lines
717 B
TypeScript
43 lines
717 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Macdonald\'s Collection 2019'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
illustrator: "Akira Komayama",
|
|
category: "Pokemon",
|
|
|
|
description: {
|
|
en: "When its delicate pride is wounded, or when the gold coin on its forehead is dirtied, it flies into a hysterical rage."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Spoil the Fun"
|
|
},
|
|
|
|
damage: "10+",
|
|
|
|
effect: {
|
|
en: "If you go second, this attack does 60 more damage during your first turn."
|
|
}
|
|
}],
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Alolan Meowth"
|
|
},
|
|
|
|
rarity: "None",
|
|
hp: 60,
|
|
types: ["Darkness"]
|
|
}
|
|
|
|
export default card |