mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
83 lines
3.2 KiB
TypeScript
83 lines
3.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pyukumuku",
|
|
fr: "Concombaffe",
|
|
es: "Pyukumuku",
|
|
it: "Pyukumuku",
|
|
de: "Gufa",
|
|
'pt-br': "Pyukumuku",
|
|
ko: "해무기"
|
|
},
|
|
|
|
illustrator: "You Iribi",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "It lives in warm, shallow waters. If it encounters a foe, it will spit out its internal organs as a means to punch them.",
|
|
fr: "Il vit dans les eaux chaudes des hauts-fonds.\nS'il croise un ennemi, il l'attaque en lui crachant\nses organes internes au visage.",
|
|
es: "Vive en los cálidos bajíos de las playas. Si se\ntopa con un enemigo, ataca golpeándolo sin\ncesar con las entrañas que expulsa por la boca.",
|
|
it: "Vive vicino alle spiagge in acque calde e poco\nprofonde. Quando si imbatte in un nemico, lo\nattacca espellendo gli organi interni dalla bocca.",
|
|
de: "Es lebt in warmen Küstengewässern. Trifft es auf\neinen Gegner, öffnet es den Mund und lässt zum\nAngriff seine Organe hervorschnellen.",
|
|
'pt-br': "Vive em águas rasas e quentes. Se encontra\num inimigo, cospe seus órgãos internos\npara enchê-lo de socos.",
|
|
ko: "따뜻하고 얕은 여울에 산다.\n상대와 마주치면 체내 기관을\n입으로 뿜어서 때려눕힌다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Innards Out",
|
|
fr: "Expuls'Organes",
|
|
es: "Revés",
|
|
it: "Espellinterno",
|
|
de: "Magenkrempler",
|
|
'pt-br': "Extensão de Vísceras",
|
|
ko: "내용물분출"
|
|
},
|
|
|
|
effect: {
|
|
en: "If this Pokémon is in the Active Spot and is Knocked Out by damage from an attack from your opponent's Pokémon, do 50 damage to the Attacking Pokémon.",
|
|
fr: "Si ce Pokémon est sur le Poste Actif et qu'il est mis K.O. par les dégâts d'une attaque d'un Pokémon de votre adversaire, le Pokémon Attaquant subit 50 dégâts.",
|
|
es: "Si este Pokémon está en el Puesto Activo y queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, el Pokémon Atacante sufre 50 puntos de daño.",
|
|
it: "Se questo Pokémon è in posizione attiva e viene messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario, il Pokémon attaccante subisce 50 danni.",
|
|
de: "Wenn dieses Pokémon in der Aktiven Position ist und durch Schaden einer Attacke von Pokémon deines Gegners kampfunfähig wird, füge dem Angreifenden Pokémon 50 Schadenspunkte zu.",
|
|
'pt-br': "Se este Pokémon estiver no Campo Ativo e for Nocauteado pelo dano de um ataque dos Pokémon do seu oponente, cause 50 pontos de dano ao Pokémon Atacante.",
|
|
ko: "이 포켓몬이 배틀필드에서 상대의 포켓몬으로부터 기술의 데미지를 받아 기절했을 때 기술을 사용한 포켓몬에게 50데미지를 준다."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Sprinkle Water",
|
|
fr: "Eau Aspergeante",
|
|
es: "Esparcir Agua",
|
|
it: "Goccioline",
|
|
de: "Wassersprüher",
|
|
'pt-br': "Aspergir Água",
|
|
ko: "물뿌려대기"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Water"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: ["lunala"]
|
|
}
|
|
|
|
export default card |