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

108 lines
2.1 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: "dp3-34",
localId: 34,
// Card informations
name: {
en: "Nidoking",
fr: "Nidoking",
},
hp: 130,
type: [
Type.PSYCHIC,
],
dexId: 34,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp3/34/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp3/34/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/34/high.png",
},
},
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Poison Rub",
fr: "Friction empoisonnée",
},
text: {
en: "The Defending Pokémon is now Poisoned. Before doing damage, you may switch 1 of the Defending Pokémon with 1 of your opponent's Benched Pokémon. The new Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné. Avant d'infliger des dégâts, vous pouvez échanger 1 des Pokémon Défenseurs avec 1 des Pokémon de Banc de votre adversaire. Le nouveau Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Pride Attack",
fr: "Attaque de fierté",
},
text: {
en: "Flip a coin for each Nidoqueen on your Bench. This attack does 60 damage plus 30 more damage for each heads.",
fr: "Lancez une pièce pour chaque Nidoqueen sur votre Banc. Cette attaque inflige 60 dégâts plus 30 dégâts supplémentaires pour chaque face.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+30"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Secret Wonders",
code: "dp3"
}
}
export default card