1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon 2fc22cc4a5
Added Best of games (#108)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:59:30 +02:00

37 lines
806 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 '../Best of game'
const card: Card = {
set: Set,
name: {
en: "Rockets Hitmonchan"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Crosscounter"
},
effect: {
en: "If an attack does damage to Rockets Hitmonchan during your opponents next turn (even if Rockets Hitmonchan is Knocked Out), flip a coin. If heads, Rockets Hitmonchan attacks your opponents Active Pokémon for double that amount of damage. (If Rockets Hitmonchan takes 20 damage, it does 40 damage to that Pokémon.)"
}
}, {
cost: ["Fighting", "Fighting", "Colorless"],
name: {
en: "Magnum Punch"
},
damage: 50
}]
}
export default card