1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

109 lines
1.8 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/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm4-40",
localId: 40,
// Card informations
name: {
en: "Mismagius",
fr: "Magirêve",
},
hp: 110,
type: [
Type.PSYCHIC,
],
dexId: 429,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm4/40/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/40/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm4/40/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/40/high.png",
},
},
evolveFrom: {
en: "Misdreavus",
fr: "Feuforêve",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 91,
name: "chibi"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Chaos Wheel",
fr: "Roue Chaotique",
},
text: {
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: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Dark Arts",
fr: "Arts Occultes",
},
text: {
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: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Crimson Invasion",
code: "sm4"
}
}
export default card