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

97 lines
1.6 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-71",
localId: 71,
// Card informations
name: {
en: "Nidoran♀",
fr: "Nidoran♀ Niv. 14",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 29,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/71/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/71/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/71/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/71/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 37,
name: "Miki Tanaka"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Scratch",
fr: "Griffe",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Offer Help",
fr: "Offrir de l'aide",
},
text: {
en: "Search your deck for a Supporter card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck une carte Supporter, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card