mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-04 12:49:54 +00:00
43 lines
668 B
TypeScript
43 lines
668 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Minior"
|
|
},
|
|
|
|
illustrator: "imoniii",
|
|
rarity: "One Star",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fighting"],
|
|
|
|
description: {
|
|
en: "Places where Minior fall from the night sky are few and far between, with Alola being one of the precious few."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Star Drop"
|
|
},
|
|
|
|
cost: ["Fighting", "Fighting"],
|
|
|
|
effect: {
|
|
en: "This attack does 40 damage to 1 of your opponent's Pokémon."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |