mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 13:01:57 +00:00
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Floatzel",
|
|
fr: "Mustéflott",
|
|
es: "Floatzel",
|
|
it: "Floatzel",
|
|
de: "Bojelin",
|
|
'pt-br': "Floatzel",
|
|
ko: "플로젤"
|
|
},
|
|
|
|
illustrator: "Shin Nagasawa",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "With its flotation sac inflated, it can carry people\non its back. It deflates the sac before it dives.",
|
|
fr: "Il gonfle sa bouée pour permettre aux gens de\nmonter sur son dos et il la dégonfle pour plonger.",
|
|
es: "Con la vejiga natatoria inflada, puede llevar a personas\nsobre su espalda. Antes de bucear, la desinfla.",
|
|
it: "Col galleggiante gonfio, può trasportare delle\npersone sul dorso. Per immergersi lo sgonfia.",
|
|
de: "Mit gefüllter Schwimmblase kann es Menschen\nauf seinem Rücken tragen. Lässt es Luft aus ihr\nheraus, taucht es unter.",
|
|
'pt-br': "Com sua bolsa de flutuação inflada, pode transportar\npessoas nas costas. Esvazia a bolsa antes de mergulhar.",
|
|
ko: "부낭을 부풀리면 사람을\n등에 태울 수 있다.\n부낭을 오그라들게 하여 잠수한다."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
evolveFrom: {
|
|
en: "Buizel"
|
|
},
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Attack the Wound",
|
|
fr: "Défi de la Plaie",
|
|
es: "Ataque a la Herida",
|
|
it: "Attacco Spietato",
|
|
de: "Wundschmerz",
|
|
'pt-br': "Atacar a Ferida",
|
|
ko: "상처때리기"
|
|
},
|
|
|
|
cost: ["Water"],
|
|
damage: "10+",
|
|
|
|
effect: {
|
|
en: "If your opponent's Active Pokémon has damage on it, this attack does 60 more damage.",
|
|
fr: "Si le Pokémon Actif de votre adversaire a subi des dégâts, cette attaque inflige 60 dégâts de plus.",
|
|
es: "Si el Pokémon Activo de tu rival ya tiene daño, este ataque hace 60 puntos de daño más.",
|
|
it: "Se il Pokémon attivo del tuo avversario è danneggiato, questo attacco infligge 60 danni in più.",
|
|
de: "Wenn dem Aktiven Pokémon deines Gegners bereits Schaden zugefügt wurde, fügt diese Attacke 60 Schadenspunkte mehr zu.",
|
|
'pt-br': "Se o Pokémon Ativo do seu oponente estiver danificado, este ataque causará 60 pontos de dano a mais.",
|
|
ko: "상대의 배틀 포켓몬이 데미지를 받고 있다면 60데미지를 추가한다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: ["vol6"]
|
|
}
|
|
|
|
export default card
|