mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
37 lines
806 B
TypeScript
37 lines
806 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Best of game'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rocket’s Hitmonchan"
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Fighting"],
|
||
|
||
name: {
|
||
en: "Crosscounter"
|
||
},
|
||
|
||
effect: {
|
||
en: "If an attack does damage to Rocket’s Hitmonchan during your opponent’s next turn (even if Rocket’s Hitmonchan is Knocked Out), flip a coin. If heads, Rocket’s Hitmonchan attacks your opponent’s Active Pokémon for double that amount of damage. (If Rocket’s 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 |