1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

74 lines
1.4 KiB
TypeScript
Raw Permalink 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 '../Emerald'
const card: Card = {
name: {
en: "Feebas",
fr: "Barpau",
de: "Barschwa"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
349,
],
hp: 30,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Submerge",
fr: "Submerger",
de: "Untertauchen"
},
effect: {
en: "As long as Feebas is on your Bench, prevent all damage done to Feebas by attacks (both yours and your opponent's).",
fr: "Tant que Barpau est sur votre Banc, prévenez tous les dégâts qui lui sont infligés par des attaques (les vôtres et celles de votre adversaire).",
de: "Solange sich Barschwa auf deiner Bank befindet, verhindere allen Schaden, der Barschwa durch Angriffe zugefügt wird (eigene und gegnerische Angriffe)."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Lunge",
fr: "Coup rapide",
de: "Ausfall"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
de: "Wirf 1 Münze. Bei 'Zahl' hat dieser Angriff keine Auswirkungen."
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card