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,80 @@
import { Card } from '../../../interfaces'
import Set from '../Crimson Invasion'
const card: Card = {
name: {
en: "Mismagius",
fr: "Magirêve",
},
illustrator: "chibi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
429,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Misdreavus",
fr: "Feuforêve",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Chaos Wheel",
fr: "Roue Chaotique",
},
effect: {
en: "Your opponent can't play any Pokémon Tool, Special Energy, or Stadium cards from their hand during their next turn.",
fr: "Votre adversaire ne peut pas jouer de cartes Outil Pokémon, Énergie spéciale ou Stade de sa main pendant son prochain tour.",
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Dark Arts",
fr: "Arts Occultes",
},
effect: {
en: "This attack does 20 damage for each card in your opponent's hand.",
fr: "Cette attaque inflige 20 dégâts pour chaque carte dans la main de votre adversaire.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card