mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
65 lines
939 B
TypeScript
65 lines
939 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../EX trainer Kit 2 (Minun).ts'
|
||
|
||
const card: Card = {
|
||
dexId: [312],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Minun"
|
||
},
|
||
|
||
illustrator: "Katsura Tabata",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Basic",
|
||
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Drawup Power"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for an Energy card, show it to your opponent, and put into your hand. Shuffle your deck afterward."
|
||
}
|
||
}, {
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless"
|
||
],
|
||
name: {
|
||
en: "Front Spark"
|
||
},
|
||
effect: {
|
||
en: "Does 10 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)"
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "2x"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
}
|
||
|
||
export default card
|