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

73 lines
1.3 KiB
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 '../Lost Thunder'
const card: Card = {
name: {
en: "Blissey",
fr: "Leuphorie",
},
illustrator: "MAHOU",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
242,
],
hp: 160,
types: [
"Colorless",
],
evolveFrom: {
en: "Chansey",
fr: "Leveinard",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Happiness Supplement",
fr: "Complément de Joie",
},
effect: {
en: "Once during your turn (before your attack), you may remove a Special Condition from your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez retirer un État Spécial de votre Pokémon Actif.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Powerful Slap",
fr: "Grosse Baffe",
},
effect: {
en: "Flip a coin for each Energy attached to this Pokémon. This attack does 80 damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie attachée à ce Pokémon. Cette attaque inflige 80 dégâts pour chaque côté face.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card