mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../151"
|
|
|
|
const card: Card = {
|
|
dexId: [31],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Nidoqueen",
|
|
en: "Nidoqueen",
|
|
es: "Nidoqueen",
|
|
it: "Nidoqueen",
|
|
pt: "Nidoqueen",
|
|
de: "Nidoqueen"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 170,
|
|
types: ["Darkness"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
cost: ["Darkness", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Pression de Reine",
|
|
en: "Queen Press",
|
|
es: "Presión Reina",
|
|
it: "Pressa della Regina",
|
|
pt: "Compressão Régia",
|
|
de: "Druck der Königin"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base.",
|
|
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
|
|
es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon Básicos.",
|
|
it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base.",
|
|
pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos.",
|
|
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon zugefügt wird."
|
|
},
|
|
|
|
damage: 90
|
|
}, {
|
|
cost: ["Darkness", "Darkness", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Allonger",
|
|
en: "Lunge Out",
|
|
es: "Arremeter",
|
|
it: "Affondo Lungo",
|
|
pt: "Bote",
|
|
de: "Sprungangriff"
|
|
},
|
|
|
|
damage: 160
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |