1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

76 lines
1.1 KiB
TypeScript
Raw 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Blissey",
fr: "Leuphorie",
},
illustrator: "Kanako Eo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
242,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Chansey",
fr: "Leveinard",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Link",
fr: "Chaîne dénergie",
},
effect: {
en: "Search your discard pile for an Energy card and attach it to Blissey.",
fr: "Cherchez dans votre pile de défausse une carte Énergie et attachez-la à Leuphorie.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Double-edge",
fr: "Damoclès",
},
effect: {
en: "Blissey does 40 damage to itself.",
fr: "Leuphorie sinflige 40 dégâts.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card