1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42: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
2.1 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 '../Unified Minds'
const card: Card = {
name: {
en: "Heracross",
fr: "Scarhino",
es: "Heracross",
it: "Heracross",
pt: "Heracross",
de: "Skaraborn"
},
illustrator: "Sanosuke Sakuma",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
214,
],
hp: 100,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Turn the Tables",
fr: "Retournement de Situation",
es: "Cambio de Tornas",
it: "Ribaltamento",
pt: "Virada de Mesa",
de: "Blattwende"
},
effect: {
en: "If 1 of your opponents Pokémon used a GX attack during their last turn, your opponent shuffles their Active Pokémon and all cards attached to it into their deck.",
fr: "Si lun des Pokémon de votre adversaire a utilisé une attaque GX pendant son dernier tour, votre adversaire mélange son Pokémon Actif et toutes les cartes qui lui sont attachées avec son deck.",
es: "Si 1 de los Pokémon de tu rival usó un ataque GX durante su último turno, tu rival pone su Pokémon Activo y todas las cartas unidas a él en su baraja y las baraja todas.",
it: "Se uno dei Pokémon del tuo avversario ha usato un attacco GX durante il suo ultimo turno, il tuo avversario rimischia il suo Pokémon attivo e tutte le carte a esso assegnate nel suo mazzo.",
pt: "Se 1 dos Pokémon do seu oponente usou um ataque GX durante a última vez dele(a) jogar, seu oponente embaralhará o Pokémon Ativo dele(a) e todas as cartas ligadas a ele no próprio baralho.",
de: "Wenn ein Pokémon deines Gegners während seines letzten Zuges eine GX-Attacke eingesetzt hat, mischt dein Gegner sein Aktives Pokémon und alle an es angelegten Karten in sein Deck."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 70,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card