mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 10:49:55 +00:00
* Fix Triumphant Light card data and formatting Fix card data including attack damage modifiers, Palkia and Dalgia Origin forme names and incorrect weakness for Giratina. Also remove unnecessary HTML formatting from card descriptions * Remove HTML anchor tags around referenced Pokemon names --------- Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
61 lines
910 B
TypeScript
61 lines
910 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Triumphant Light"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Raichu"
|
||
},
|
||
|
||
illustrator: "Nisota Niso",
|
||
rarity: "Three Diamond",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Lightning"],
|
||
|
||
evolveFrom: {
|
||
en: "Pikachu"
|
||
},
|
||
|
||
description: {
|
||
en: "Its tail discharges electricity into the ground, protecting it from getting shocked."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
en: "Resilience Link"
|
||
},
|
||
|
||
effect: {
|
||
en: "If you have Arceus or Arceus ex in play, this Pokémon takes −30 damage from attacks."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Spark"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Lightning", "Lightning"],
|
||
|
||
effect: {
|
||
en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon."
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "+20"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card
|