mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 22:32:10 +00:00
61 lines
869 B
TypeScript
61 lines
869 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Heracross",
|
||
fr: "Scarhino"
|
||
},
|
||
|
||
illustrator: "otumami",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Push Down",
|
||
fr: "Recul"
|
||
},
|
||
effect: {
|
||
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
|
||
fr: "Votre adversaire échange son Pokémon Actif contre l’un de ses Pokémon de Banc."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Superpowered Horns",
|
||
fr: "Cornes Surpuissantes"
|
||
},
|
||
|
||
damage: 110,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
hp: 130,
|
||
types: ["Grass"]
|
||
}
|
||
|
||
export default card
|