mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 23:22:11 +00:00
107 lines
1.7 KiB
TypeScript
107 lines
1.7 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: "pl3-34",
|
|
localId: 34,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Medicham",
|
|
fr: "Charmina",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 308,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/34/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/34/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/34/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/34/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Meditite",
|
|
fr: "Meditikka",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 8,
|
|
name: "Masakazu Fukuda"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Channeling",
|
|
fr: "Canaliser",
|
|
},
|
|
text: {
|
|
en: "Your opponent draws 2 cards.",
|
|
fr: "Votre adversaire pioche 2 cartes.",
|
|
},
|
|
damage: 60
|
|
},{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Chakra Points",
|
|
fr: "Chakras",
|
|
},
|
|
text: {
|
|
en: "Does 10 damage plus 10 more damage for each card in your opponent's hand.",
|
|
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque carte dans la main de votre adversaire.",
|
|
},
|
|
damage: 10
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.PSYCHIC,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|