1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

104 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../../../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: "sm9-56",
localId: 56,
// Card informations
name: {
en: "Nidoqueen",
fr: "Nidoqueen",
},
hp: 160,
type: [
Type.PSYCHIC,
],
dexId: 31,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/56/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/56/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/56/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/56/high.png",
},
},
evolveFrom: {
en: "Nidorina",
fr: "Nidorina",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 65,
name: "nagimiso"
},
abilities: [{
id: 1343,
type: AbilityType.TALENT,
name: {
en: "Queen's Call",
fr: "Appel de la Souveraine",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for a Pokémon that isn't a Pokémon-GX or Pokémon-{EX}, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher dans votre deck un Pokémon qui nest pas un Pokémon-GX ou un Pokémon-{EX}, le montrer, puis lajouter à votre main. Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Power Lariat",
fr: "Lasso Puissant",
},
text: {
en: "This attack does 50 more damage for each Evolution Pokémon on your Bench.",
fr: "Cette attaque inflige 50 dégâts supplémentaires pour chaque Pokémon Évolutif sur votre Banc.",
},
damage: 10
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card