1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

56 lines
709 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 '../Primal Clash'
const card: Card = {
name: {
en: "Feebas",
fr: "Barpau",
},
illustrator: "Suwama Chiaki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
349,
],
hp: 30,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Float On",
fr: "Flottaison",
},
effect: {
en: "Flip a coin. If tails, this Pokémon does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige 10 dégâts.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card