1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

73 lines
1.2 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 = {
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