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

101 lines
1.8 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-68",
localId: 68,
// Card informations
name: {
en: "Misdreavus",
fr: "Misdreavus",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 200,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/68/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/68/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/68/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/68/high.png",
},
},
evolveFrom: {
fr: "Feuforêve",
},
tags: [
Tag.BASIC,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
attacks: [{
name: {
en: "Lullaby",
fr: "Comptine",
},
text: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Nightmare Feast",
fr: "Festin cauchemardesque",
},
text: {
en: "If the Defending Pokémon is Asleep, this attack does 50 damage and remove 5 damage counters from Misdreavus. If the Defending Pokémon is not Asleep, this attack does nothing.",
fr: "Si le Pokémon Défenseur est Endormi, cette attaque inflige 50 dégâts et retire à Feuforêve 5 marqueurs de dégât. Si le Pokémon Défenseur n'est pas Endormi, cette attaque est sans effet.",
},
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+10"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card