mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
94 lines
1.4 KiB
TypeScript
94 lines
1.4 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: "basep-17",
|
||
localId: 17,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Dark Persian",
|
||
},
|
||
|
||
hp: 60,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 53,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/base/basep/17/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/base/basep/17/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Meowth",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Ken Sugimori",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Tempt",
|
||
},
|
||
text: {
|
||
en: "If your opponent has any Benched Pokémon, flip a coin. If heads, choose 1 of your opponent's Benched Pokémon and switch it with the Defending Pokémon.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Poison Claws",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-30"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Wizards Black Star Promos",
|
||
code: "basep"
|
||
}
|
||
}
|
||
|
||
export default card
|