mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
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 |