1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

104 lines
1.9 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "dp1-10",
localId: 10,
// Card informations
name: {
en: "Mismagius",
fr: "Magirêve",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 429,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp1/10/low",
fr: "https://assets.tcgdex.net/fr/dp/dp1/10/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/10/high",
fr: "https://assets.tcgdex.net/fr/dp/dp1/10/high",
},
},
evolveFrom: {
en: "Misdreavus",
fr: "Feuforêve",
},
tags: [
Tag.STAGE1,
],
illustrator: "Mikiko Takeda",
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Avenge",
fr: "Venger",
},
text: {
en: "Count the number of your Pokémon that have any damage counters on them. Put that many damage counters on the Defending Pokémon.",
fr: "Comptabilisez le nombre de vos Pokémon possédant des marqueurs de dégât. Placez autant de marqueurs de dégât sur le Pokémon Défenseur.",
},
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psywave",
fr: "Vague psy",
},
text: {
en: "Does 30 damage plus 20 more damage for each Energy attached to the Defending Pokémon.",
fr: "Inflige 30 dégâts plus 20 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
},
damage: 30
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+20"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Diamond & Pearl",
code: "dp1"
}
}
export default card