mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
93 lines
1.3 KiB
TypeScript
93 lines
1.3 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "base4-53",
|
||
localId: 53,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Nidorina",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 30,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/base/base4/53/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/base/base4/53/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Nidoran♀",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Ken Sugimori",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Supersonic",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Double Kick",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Base Set 2",
|
||
code: "base4"
|
||
}
|
||
}
|
||
|
||
export default card
|