1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Unbroken Bonds'
const card: Card = {
name: {
en: "Mismagius",
fr: "Magirêve",
},
illustrator: "sui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
429,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Misdreavus",
fr: "Feuforêve",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Mysterious Message",
fr: "Message Mystérieux",
},
effect: {
en: "Once during your turn (before your attack), you may draw cards until you have 7 cards in your hand. If you drew any cards in this way, this Pokémon is Knocked Out.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher des cartes jusquà avoir 7 cartes en main. Si vous avez pioché des cartes de cette façon, ce Pokémon est mis K.O.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card