1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

72 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Heracross",
fr: "Scarhino",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
214,
],
hp: 80,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Pitch",
fr: "Lancer",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
},
damage: 10,
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Horn Slash",
fr: "Tranch'korne",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
retreat: 2,
}
export default card