1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32: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

85 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Heracross",
fr: "Scarhino",
es: "Heracross",
it: "Heracross",
pt: "Heracross",
de: "Skaraborn"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
214,
],
hp: 120,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Powerful Friends",
fr: "Force de lAmitié",
es: "Amigos Poderosos",
it: "Spallecoperte",
pt: "Amigos Poderosos",
de: "Einflussreiche Freunde"
},
effect: {
en: "If you have any Stage 2 Pokémon on your Bench, this attack does 90 more damage.",
fr: "Si vous avez au moins un Pokémon de Niveau 2 sur votre Banc, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si tienes algún Pokémon de Fase 2 en tu Banca, este ataque hace 90 puntos de daño más.",
it: "Se hai dei Pokémon di Fase 2 in panchina, questo attacco infligge 90 danni in più.",
pt: "Se você tiver algum Pokémon Estágio 2 no seu Banco, este ataque causará 90 pontos de dano a mais.",
de: "Wenn du mindestens 1 Phase-2-Pokémon auf deiner Bank hast, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card