mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
90 lines
1.5 KiB
TypeScript
90 lines
1.5 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: "neo3-13",
|
||
localId: 13,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Raikou",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 243,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/neo/neo3/13/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/neo/neo3/13/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Ken Sugimori",
|
||
|
||
abilities: [{
|
||
id: 1029,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Lightning Burst",
|
||
},
|
||
text: {
|
||
en: "Whenever you attach a Lightning Energy card from your hand to Raikou, if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. This power stops working while Raikou is Asleep, Confused, or Paralyzed.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING
|
||
],
|
||
name: {
|
||
en: "Lightning Tackle",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If tails, Raikou does 20 damage to itself.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Neo Revelation",
|
||
code: "neo3"
|
||
}
|
||
}
|
||
|
||
export default card
|