1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

37 lines
662 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Ninun)'
const card: Card = {
set: Set,
name: {
en: "Minun"
},
illustrator: "Katsura Tabata",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
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."
}
}, {
name: {
en: "Front Spark"
},
damage: 20,
effect: {
en: "Does 10 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)"
}
}]
}
export default card