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

feat: Add A3a - Extradimensional Crisis (#752)

This commit is contained in:
2025-05-29 16:18:14 +02:00
committed by GitHub
parent 082bb77f13
commit eb93ab4124
104 changed files with 4494 additions and 0 deletions

View File

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