mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
98 lines
1.8 KiB
TypeScript
98 lines
1.8 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: "dp3-95",
|
|
localId: 95,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Murkrow",
|
|
fr: "Cornèbre",
|
|
},
|
|
|
|
hp: 50,
|
|
|
|
type: [
|
|
Type.DARKNESS,
|
|
],
|
|
|
|
dexId: 198,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp3/95/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp3/95/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp3/95/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp3/95/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Yusuke Ohmura",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.DARKNESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Feint Attack",
|
|
fr: "Pierre Nut",
|
|
},
|
|
text: {
|
|
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
|
|
fr: "Cornèbre peut évoluer lors du tour où il est joué.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.DARKNESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
fr: "Feinte",
|
|
},
|
|
text: {
|
|
fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet sur ce Pokémon.",
|
|
},
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+10"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.FIGHTING,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Secret Wonders",
|
|
code: "dp3"
|
|
}
|
|
}
|
|
|
|
export default card
|