1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

103
cards/xy/xy11/45.ts Normal file
View File

@ -0,0 +1,103 @@
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: "xy11-45",
localId: 45,
// Card informations
name: {
en: "Nidoking",
fr: "Nidoking",
},
hp: 150,
type: [
Type.PSYCHIC,
],
dexId: 34,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy11/45/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/45/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy11/45/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/45/high.png",
},
},
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 59,
name: "Mina Nakai"
},
abilities: [{
id: 539,
type: AbilityType.TALENT,
name: {
en: "King's Palace",
fr: "Palais Royal",
},
text: {
en: "Your Nidoqueen's attacks do 20 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
fr: "Les attaques de vos Nidoqueen infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Power Lariat",
fr: "Lasso Puissant",
},
text: {
en: "This attack does 30 more damage for each Evolution Pokémon on your Bench.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Pokémon Évolutif sur votre Banc.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Steam Siege",
code: "xy11"
}
}
export default card