1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

74 lines
1.3 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 "../Fusion Strike"
const card: Card = {
dexId: [242],
set: Set,
name: {
en: "Blissey",
fr: "Leuphorie",
es: "Blissey",
it: "Blissey",
pt: "Blissey",
de: "Heiteira"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
evolveFrom: {
en: "Chansey",
fr: "Leveinard",
es: "Chansey",
it: "Chansey",
pt: "Chansey",
de: "Chaneira"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Mizue",
description: {
en: "This Pokémon is overflowing with love. Only Chansey that share a strong bond with their Trainer can evolve, so people say."
},
abilities: [{
type: "Ability",
name: {
en: "Expert in Roundness"
},
effect: {
en: "Prevent all damage done to each of your Pokémon that has the Let's All Rollout attack by attacks from your opponent's Pokémon VMAX."
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Let's All Rollout"
},
damage: "20×",
effect: {
en: "This attack does 20 damage for each of your Benched Pokémon that has the Let's All Rollout attack."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card