1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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

109 lines
1.9 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 '@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: "xy5-81",
localId: 81,
// Card informations
name: {
en: "Medicham",
fr: "Charmina",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 308,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy5/81/low",
fr: "https://assets.tcgdex.net/fr/xy/xy5/81/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy5/81/high",
fr: "https://assets.tcgdex.net/fr/xy/xy5/81/high",
},
},
evolveFrom: {
en: "Meditite",
fr: "Méditikka",
},
tags: [
Tag.STAGE1,
],
illustrator: "Mitsuhiro Arita",
abilities: [{
id: -1,
type: AbilityType.ANCIENTTRAIT,
name: {
fr: "Offensive Ω",
},
text: {
fr: "Ce Pokémon peut attaquer deux fois par tour. (Si la première attaque met K.O. le Pokémon Actif de votre adversaire, vous pouvez encore attaquer après que votre adversaire a choisi un nouveau Pokémon Actif.)",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Calm Mind",
fr: "Plénitude",
},
text: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
},{
cost: [
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Yoga Kick",
fr: "Yoga Kick",
},
text: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Primal Clash",
code: "xy5"
}
}
export default card