1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

73 lines
1.1 KiB
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 Destiny'
const card: Card = {
name: {
en: "Heracross",
fr: "Scarhino"
},
illustrator: undefined,
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
214,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge"
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Grass",
],
name: {
en: "Charging Horn",
fr: "Défonc'korne"
},
effect: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage. If tails, this attack does 30 damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires. Si c'est pile, cette attaque inflige 30 dégâts."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
description: {
fr: "Généralement, il est pacifique, mais il attaquera tous ceux qui s'interposeront entre lui et son miel, sa nourriture préférée."
}
}
export default card