1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

82 lines
1.5 KiB
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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Rocket's Hitmonchan ex",
de: "Rockets Nokchan ex"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
107,
],
hp: 100,
types: [
"Darkness",
],
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Strikes Back",
de: "Strikes Back"
},
effect: {
en: "If Rocket's Hitmonchan ex is your Active Pokémon and is damaged by an opponent's attack (even if Rocket's Hitmonchan ex is Knocked Out), put 2 damage counters on the Attacking Pokémon.",
de: "If Rocket's Hitmonchan ex is your Active Pokémon and is damaged by an opponent's attack (even if Rocket's Hitmonchan ex is Knocked Out), put 2 damage counters on the Attacking Pokémon."
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Mach Punch",
de: "Mach Punch"
},
effect: {
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
de: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness or Resistance for Benched Pokémon.)"
},
damage: 10,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Magnum Punch",
de: "Magnum Punch"
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card