1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

58 lines
873 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Celebi V",
fr: "Celebi V",
es: "Celebi V",
it: "Celebi V",
pt: "Celebi V",
de: "Celebi V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 190,
types: ["Grass"],
stage: "Basic",
suffix: "V",
retreat: 1,
regulationMark: "E",
illustrator: "Teeziro",
attacks: [{
cost: ["Grass"],
name: {
en: "Leaflet Dance"
},
effect: {
en: "Attach any number of Grass Energy cards from your hand to your Pokémon in any way you like."
}
}, {
cost: ["Grass", "Colorless"],
name: {
en: "Slash Back"
},
damage: 60,
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon."
}
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card