mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 01:19:54 +00:00
53 lines
600 B
TypeScript
53 lines
600 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Feebas",
|
||
fr: "Barpau"
|
||
},
|
||
illustrator: "HYOGONOSUKE",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
|
||
hp: 30,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Nap",
|
||
fr: "Tit’Sieste"
|
||
},
|
||
effect: {
|
||
en: "Heal 20 damage from this Pokémon.",
|
||
fr: "Soignez 20 dégâts de ce Pokémon."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|