1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

61 lines
960 B
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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Feebas",
fr: "Barpau",
es: "Feebas",
it: "Feebas",
pt: "Feebas",
de: "Barschwa"
},
illustrator: "HYOGONOSUKE",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 30,
types: [
"Water",
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Nap",
fr: "TitSieste",
es: "Siesta",
it: "Pausa",
pt: "Soneca",
de: "Nickerchen"
},
effect: {
en: "Heal 20 damage from this Pokémon.",
fr: "Soignez 20 dégâts de ce Pokémon.",
es: "Cura 20 puntos de daño a este Pokémon.",
it: "Cura questo Pokémon da 20 danni.",
pt: "Cure 20 pontos de dano deste Pokémon.",
de: "Heile 20 Schadenspunkte bei diesem Pokémon."
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
regulationMark: "D"
}
export default card