mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
89 lines
3.0 KiB
TypeScript
89 lines
3.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Lost Origin"
|
||
|
||
const card: Card = {
|
||
dexId: [87],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Dewgong",
|
||
fr: "Lamantine",
|
||
es: "Dewgong",
|
||
it: "Dewgong",
|
||
pt: "Dewgong",
|
||
de: "Jugong"
|
||
},
|
||
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Water"],
|
||
|
||
evolveFrom: {
|
||
en: "Seel",
|
||
fr: "Otaria",
|
||
es: "Seel",
|
||
it: "Seel",
|
||
pt: "Seel",
|
||
de: "Jurob"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Water"],
|
||
|
||
name: {
|
||
en: "Swim Freely",
|
||
fr: "Nage Libre",
|
||
es: "Nado Libre",
|
||
it: "Nuotata Libera",
|
||
pt: "Nadar Sossegado",
|
||
de: "Freischwimmen"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from and effects of attacks done to this Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon.",
|
||
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, evita todo el daño y todos los efectos de los ataques infligidos a este Pokémon.",
|
||
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni sia i danni che gli effetti degli attacchi inflitti a questo Pokémon.",
|
||
pt: "Jogue 1 moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano e os efeitos de ataques causados a este Pokémon.",
|
||
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden durch und alle Effekte von Attacken, die diesem Pokémon zugefügt werden."
|
||
},
|
||
|
||
damage: 10
|
||
}, {
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
en: "Floe Return",
|
||
fr: "Retour de Banquise",
|
||
es: "Retorno al Témpano",
|
||
it: "Lastraritorno",
|
||
pt: "Retorno Glacial",
|
||
de: "Schollenrückkehr"
|
||
},
|
||
|
||
effect: {
|
||
en: "Shuffle any amount of Water Energy from your Pokémon into your deck. This attack does 40 damage for each card you shuffled into your deck in this way.",
|
||
fr: "Mélangez autant d'Énergies Water que vous le voulez de vos Pokémon avec votre deck. Cette attaque inflige 40 dégâts pour chaque carte mélangée avec votre deck de cette façon.",
|
||
es: "Pon cualquier cantidad de Energías Water de tus Pokémon en tu baraja y baraja todas las cartas. Este ataque hace 40 puntos de daño por cada carta que hayas puesto en tu baraja de esta manera.",
|
||
it: "Rimischia nel tuo mazzo tutte le Energie Water che vuoi dai tuoi Pokémon. Questo attacco infligge 40 danni per ogni carta che hai rimischiato in questo modo.",
|
||
pt: "Embaralhe qualquer quantidade de Energia Water dos seus Pokémon no seu baralho. Este ataque causa 40 pontos de dano para cada carta embaralhada no seu baralho desta forma.",
|
||
de: "Mische beliebig viele Water-Energien von deinen Pokémon in dein Deck. Diese Attacke fügt für jede auf diese Weise in dein Deck gemischte Karte 40 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: "40×"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "F",
|
||
|
||
variants: {
|
||
"normal": true,
|
||
"reverse": true,
|
||
"holo": false
|
||
}
|
||
}
|
||
|
||
export default card |