1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

40 lines
576 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Morelull"
},
illustrator: "Midori Harada",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Psychic"],
description: {
en: "It scatters spores that flicker and glow. Anyone\nseeing these lights falls into a deep slumber."
},
stage: "Basic",
attacks: [{
name: {
en: "Hook"
},
damage: 20,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card