1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 22:32:10 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

61 lines
869 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 '../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 lun 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