1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

71 lines
971 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Holon Phantoms'
const card: Card = {
name: {
en: "Primeape δ",
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
57,
],
hp: 70,
types: [
"Fire",
],
evolveFrom: {
en: "Mankey",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Wreck",
},
effect: {
en: "If there is any Stadium card in play, this attack does 30 damage plus 30 more damage. Discard that Stadium card.",
},
damage: 30,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flames of Rage",
},
effect: {
en: "Discard 2 Energy attached to Primeape. This attack does 10 damage plus 20 more damage for each damage counter on Primeape.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card