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

64 lines
874 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 '../Neo Genesis'
const card: Card = {
name: {
en: "Heracross",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
214,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Final Blow",
},
effect: {
en: "If Heracross's remaining HP are 20 or less, you may make its Megahorn attack's base damage 120 instead of 60. This power can't be used if Heracross is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
"Grass",
],
name: {
en: "Megahorn",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card