mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
105 lines
2.2 KiB
TypeScript
105 lines
2.2 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: "dp6-67",
|
|
localId: 67,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Ninjask",
|
|
fr: "Ninjask",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.GRASS,
|
|
],
|
|
|
|
dexId: 291,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp6/67/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp6/67/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp6/67/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp6/67/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Nincada",
|
|
fr: "Ningale",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 5,
|
|
name: "Ken Sugimori"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 598,
|
|
type: AbilityType.POKEPOWER,
|
|
name: {
|
|
en: "Cast-off Shell",
|
|
fr: "Coquille libérante",
|
|
},
|
|
text: {
|
|
en: "Once during your turn, when you play Ninjask from your hand to evolve 1 of your Pokémon and if your Bench isn't full, you may put Shedinja onto your Bench as a Basic Pokémon from your hand or your discard pile.",
|
|
fr: "Une seule fois lors de votre tour, lorsque vous jouez Ninjask de votre main pour faire évoluer 1 de vos Pokémon et si votre Banc n'est pas plein, vous pouvez placer Munja sur votre Banc comme Pokémon de base de votre main ou votre pile de défausse.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.GRASS
|
|
],
|
|
name: {
|
|
en: "Chip Off",
|
|
fr: "Grignoter",
|
|
},
|
|
text: {
|
|
en: "If your opponent has 6 or more cards in his or her hand, discard a number of cards without looking until your opponent has 5 cards left in his or her hand.",
|
|
fr: "Si votre adversaire possède au moins 6 cartes en main, défaussez des cartes sans regarder jusqu'à ce qu'il ne lui reste plus que 5 cartes en main.",
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.FIGHTING,
|
|
value: "-20"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Legends Awakened",
|
|
code: "dp6"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|