mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
98 lines
1.6 KiB
TypeScript
98 lines
1.6 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: "bw6-48",
|
|
localId: 48,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Shedinja",
|
|
fr: "Munja",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 292,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/bw/bw6/48/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/bw/bw6/48/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/bw/bw6/48/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/bw/bw6/48/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Nincada",
|
|
fr: "Ningale",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 8,
|
|
name: "Masakazu Fukuda"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 17,
|
|
type: AbilityType.TALENT,
|
|
name: {
|
|
en: "Empty Shell",
|
|
fr: "Coquille Vide",
|
|
},
|
|
text: {
|
|
en: "If this Pokémon is Knocked Out, your opponent can't take any Prize cards for it.",
|
|
fr: "Si ce Pokémon est mis K.O., votre adversaire ne peut pas récupérer de carte Récompense pour ce Pokémon.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Cursed Drop",
|
|
fr: "Chute Maudite",
|
|
},
|
|
text: {
|
|
en: "Put 3 damage counters on your opponent's Pokémon in any way you like.",
|
|
fr: "Placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Dragons Exalted",
|
|
code: "bw6"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|