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

105 lines
2.2 KiB
TypeScript

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: "dp7-7",
localId: 7,
// Card informations
name: {
en: "Mismagius",
fr: "Mismagius",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 429,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/7/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/7/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/7/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/7/high.png",
},
},
evolveFrom: {
en: "Misdreavus",
fr: "Feuforêve",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
name: {
en: "Crash Chant",
fr: "Chant fracassant",
},
text: {
en: "Choose up to 4 in any combination of Pokémon Tool cards and Technical Machine cards in play (both yours and your opponent's) and discard them. This attack does 20 damage times the number of cards discarded in this way.",
fr: "Choisissez n'importe quelle combinaison de jusqu'à 4 cartes Outil Pokémon et cartes Machine Technique en jeu (les vôtres et celles de votre adversaire) et défaussez-les. Cette attaque inflige 20 dégâts multipliés par le nombre de cartes défaussées de cette façon.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Horror Chant",
fr: "Chant d'horreur",
},
text: {
en: "If your opponent has 4 or more Benched Pokémon, choose 1 of them and return that Pokémon and all cards attached to it to your opponent's hand.",
fr: "Si votre adversaire possède au moins 4 Pokémon de Banc, choisissez-en 1 et replacez-le ainsi que toutes les cartes qui lui sont attachées dans la main de votre adversaire.",
},
damage: 40
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+20"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card