mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
89 lines
1.4 KiB
TypeScript
89 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: "pop2-4",
|
||
localId: 4,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Suicune",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 245,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/pop/pop2/4/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/pop/pop2/4/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Kouki Saitou",
|
||
|
||
abilities: [{
|
||
id: 415,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Mirror Coat",
|
||
},
|
||
text: {
|
||
en: "If Suicune is Burned or Poisoned by an opponent's attack (even if Suicune is Knocked Out), the Attacking Pokémon is now affected by the same Special Conditions (1 if there is only 1).",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Bubblebeam",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "POP Series 2",
|
||
code: "pop2"
|
||
}
|
||
}
|
||
|
||
export default card
|