1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View File

@ -0,0 +1,73 @@
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