1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

81 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../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: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card