1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05: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.4 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: "Floatzel",
fr: "Mustéflott",
es: "Floatzel",
it: "Floatzel",
pt: "Floatzel",
de: "Bojelin"
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
419,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Buizel",
fr: "Mustébouée",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Agility",
fr: "Hâte",
es: "Agilidad",
it: "Agilità",
pt: "Agilidade",
de: "Agilität"
},
effect: {
en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponents next turn.",
fr: "Lancez une pièce. Si cest face, évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
es: "Lanza 1 moneda. Si sale cara, evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon durante el próximo turno de tu rival.",
it: "Lancia una moneta. Se esce testa, previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon durante il prossimo turno del tuo avversario.",
pt: "Jogue 1 moeda. Se sair cara, prevenirá todos os efeitos de ataques, incluindo dano, causados a este Pokémon durante a próxima vez de jogar do seu oponente.",
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners alle Effekte von Attacken, einschließlich Schaden, die diesem Pokémon zugefügt werden."
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Aqua Blast",
fr: "Explosion Aquatique",
es: "Explosión Acuática",
it: "Esplosione Acquatica",
pt: "Explosão de Água",
de: "Wasserschuss"
},
effect: {
en: "Discard a Water Energy from this Pokémon.",
fr: "Défaussez une Énergie Water de ce Pokémon.",
es: "Descarta 1 Energía Water de este Pokémon.",
it: "Scarta unEnergia Water assegnata a questo Pokémon.",
pt: "Descarte 1 Energia Water deste Pokémon.",
de: "Lege 1 Water-Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card