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

106 lines
1.9 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: "pl2-73",
localId: 73,
// Card informations
name: {
en: "Nidorina",
fr: "Nidorina Niv. 29",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 30,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/73/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/73/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/73/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/73/high.png",
},
},
evolveFrom: {
en: "Nidoran♀",
fr: "Nidoran♀",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Jump Tackle",
fr: "Charge aérienne",
},
text: {
en: "Nidorina does 10 damage to itself, and don't apply Weakness and Resistance to this damage.",
fr: "Nidorina s'inflige 10 dégâts. N'appliquez pas la Faiblesse et la Résistance à ces dégâts.",
},
damage: 30
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Stress Poison",
fr: "Poison de stress",
},
text: {
en: "If Nidorina has any damage counters on it, this attack does 40 damage plus 20 more damage and the Defending Pokémon is now Poisoned.",
fr: "Si Nidorina possède des marqueurs de dégât, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires et le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card