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

70 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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: "Piplup",
fr: "Tiplouf",
es: "Piplup",
it: "Piplup",
pt: "Piplup",
de: "Plinfa"
},
illustrator: "Tomomi Kaneko",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
dexId: [
393,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Bubble Hold",
fr: "Bulles Bloquantes",
es: "Bloqueo Burbuja",
it: "Gabbia di Bolle",
pt: "Prisão de Bolhas",
de: "Blasengriff"
},
effect: {
en: "If the Defending Pokémon is a Basic Pokémon, it cant attack during your opponents next turn.",
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
es: "Si el Pokémon Defensor es un Pokémon Básico, no puede atacar durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Base.",
pt: "Se o Pokémon Defensor for um Pokémon Básico, ele não poderá atacar durante a próxima vez de jogar do seu oponente.",
de: "Wenn das Verteidigende Pokémon ein Basis-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card