mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-04 12:49:54 +00:00
31 lines
445 B
TypeScript
31 lines
445 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mankey"
|
|
},
|
|
|
|
illustrator: "Souichirou Gunjima",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Reckless Charge"
|
|
},
|
|
|
|
cost: ["Fighting"],
|
|
damage: 30,
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 10 damage to itself."
|
|
}
|
|
}]
|
|
}
|
|
|
|
export default card |