1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

86 lines
1.6 KiB
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",
es: "Heracross",
it: "Heracross",
pt: "Heracross",
de: "Skaraborn"
},
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",
es: "Arremeter",
it: "Affondo Lungo",
pt: "Bote",
de: "Sprungangriff"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Riled Horn",
fr: "Corne Irritée",
es: "Cuerno Enfurecido",
it: "Corna Rabbiose",
pt: "Chifre Raivoso",
de: "Wuthorn"
},
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.",
es: "Si tu rival tiene algún Pokémon de equipo de RELEVOS en juego, este ataque hace 70 puntos de daño más.",
it: "Se il tuo avversario ha dei Pokémon ALLEATI in gioco, questo attacco infligge 70 danni in più.",
pt: "Se o seu oponente tiver algum Pokémon ALIADOS em jogo, este ataque causará 70 pontos de dano a mais.",
de: "Wenn dein Gegner mindestens 1 TAG TEAM Pokémon im Spiel hat, fügt diese Attacke 70 Schadenspunkte mehr zu."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card