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

93 lines
2.4 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: "Hitmontop",
fr: "Kapoera",
es: "Hitmontop",
it: "Hitmontop",
pt: "Hitmontop",
de: "Kapoera"
},
illustrator: "sowsow",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
237,
],
hp: 80,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Rapid Spin",
fr: "Tour Rapide",
es: "Giro Rápido",
it: "Rapigiro",
pt: "Giro Rápido",
de: "Turbodreher"
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc. Dans ce cas, votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca. Si lo haces, tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Scambia questo Pokémon con uno della tua panchina. Se lo fai, il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.",
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco. Se fizer isto, o seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, tauscht dein Gegner sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Triple Kick",
fr: "Triple Pied",
es: "Triple Patada",
it: "Triplocalcio",
pt: "Chute Triplo",
de: "Dreifachkick"
},
effect: {
en: "Flip 3 coins. This attack does 40 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts pour chaque côté face.",
es: "Lanza 3 monedas. Este ataque hace 40 puntos de daño por cada cara.",
it: "Lancia tre volte una moneta. Questo attacco infligge 40 danni ogni volta che esce testa.",
pt: "Jogue 3 moedas. Este ataque causa 40 pontos de dano para cada cara.",
de: "Wirf 3 Münzen. Diese Attacke fügt 40 Schadenspunkte pro Kopf zu."
},
damage: "40×",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card