mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
84 lines
1.3 KiB
TypeScript
84 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: "base3-29",
|
||
localId: 29,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Raichu",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 26,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/base/base3/29/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/base/base3/29/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Pikachu",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Mitsuhiro Arita",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING
|
||
],
|
||
name: {
|
||
en: "Gigashock",
|
||
},
|
||
text: {
|
||
en: "Choose 3 of your opponent's Benched Pokémon and this attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.) If your opponent has fewer than 3 Benched Pokémon, do the damage to each of them.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Fossil",
|
||
code: "base3"
|
||
}
|
||
}
|
||
|
||
export default card
|