1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +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

105
cards/sm/sm9/59.ts Normal file
View File

@ -0,0 +1,105 @@
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-59",
localId: 59,
// Card informations
name: {
en: "Nidoking",
fr: "Nidoking",
},
hp: 160,
type: [
Type.PSYCHIC,
],
dexId: 34,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/59/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/59/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/59/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/59/high.png",
},
},
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Drag Off",
fr: "Traîne",
},
text: {
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. This attack does 50 damage to the new Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Cette attaque inflige 50 dégâts au nouveau Pokémon Actif.",
},
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "King's Drum",
fr: "Tambour du Souverain",
},
text: {
en: "If Nidoqueen is on your Bench, this attack does 100 more damage.",
fr: "Si Nidoqueen est sur votre Banc, cette attaque inflige 100 dégâts supplémentaires.",
},
damage: 100
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card