mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
107 lines
1.9 KiB
TypeScript
107 lines
1.9 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm3-41",
|
||
localId: 41,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Raichu",
|
||
fr: "Raichu",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 26,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/41/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/41/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/41/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/41/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Pikachu",
|
||
fr: "Pikachu",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 0,
|
||
name: "Kagemaru Himeno"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 1132,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Evoshock",
|
||
fr: "Choc Évolutif",
|
||
},
|
||
text: {
|
||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may leave your opponent's Active Pokémon Paralyzed.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l’un de vos Pokémon pendant votre tour, vous pouvez laisser le Pokémon Actif de votre adversaire Paralysé.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Volt Tackle",
|
||
fr: "Électacle",
|
||
},
|
||
text: {
|
||
en: "This Pokémon does 30 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||
},
|
||
damage: 130
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.METAL,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Burning Shadows",
|
||
code: "sm3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|