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

95 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Lopunny",
fr: "Lockpin",
es: "Lopunny",
it: "Lopunny",
pt: "Lopunny",
de: "Schlapor"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
428,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Buneary",
fr: "Laporeille",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Stompy Stomp",
fr: "Pied-Piétine",
es: "Pisotonazo",
it: "Pesto Ripesto",
pt: "Pisada",
de: "Hopphopphurra"
},
effect: {
en: "Flip 2 coins. This attack does 40 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face.",
es: "Lanza 2 monedas. Este ataque hace 40 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 40 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 40 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 40 Schadenspunkte pro Kopf zu."
},
damage: "40×",
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Happy Turn",
fr: "Tour de Chance",
es: "Giro Feliz",
it: "Svolta Fortunata",
pt: "Vez Feliz",
de: "Willkommene Wende"
},
effect: {
en: "You may shuffle this Pokémon and all cards attached to it into your deck.",
fr: "Vous pouvez mélanger ce Pokémon et toutes les cartes qui lui sont attachées avec votre deck.",
es: "Puedes poner este Pokémon y todas las cartas unidas a él en tu baraja y barajarlas todas.",
it: "Puoi rimischiare questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
pt: "Você pode embaralhar este Pokémon e todas as cartas ligadas a ele no seu baralho.",
de: "Du kannst dieses Pokémon und alle an es angelegten Karten in dein Deck mischen."
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card