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

70 lines
943 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Heracross",
fr: "Scarhino",
},
illustrator: "Satoshi Shirai",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
214,
],
hp: 130,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Lunge Out",
fr: "Allonger",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Riled Horn",
fr: "Corne Irritée",
},
effect: {
en: "If your opponent has any TAG TEAM Pokémon in play, this attack does 70 more damage.",
fr: "Si votre adversaire a au moins un Pokémon ESCOUADE en jeu, cette attaque inflige 70 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card