mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Fix HeartGold SoulSilver datas (#73)
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Raichu",
|
||||
fr: "Raichu",
|
||||
},
|
||||
illustrator: "Takashi Yamaguchi",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
illustrator: "Takashi Yamaguchi",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
26,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@ -32,11 +37,12 @@ const card: Card = {
|
||||
fr: "Voltage maxi",
|
||||
},
|
||||
effect: {
|
||||
en: "As often as you like during your turn (before your attack), you may move a Lightning Energy attached to 1 of your Pokémon to Raichu. This power can't be used if Raichu is affected by a Special Condition.",
|
||||
fr: "Autant de fois que vous le souhaitez pendant votre tour (avant votre attaque), vous pouvez prendre une carte Énergie Lightning attachée à l'un des Pokémon de votre Banc et l'attacher à Raichu. Ce pouvoir ne peut pas être utilisé si Raichu est affecté par un État Spécial.",
|
||||
en: "As often as you like during your turn (before your attack), you may move a Lightning Energy attached to 1 of your Pokémon to Raichu. This power can’t be used if Raichu is affected by a Special Condition.",
|
||||
fr: "Autant de fois que vous le souhaitez pendant votre tour (avant votre attaque), vous pouvez prendre une carte Énergie Lightning attachée à l’un des Pokémon de votre Banc et l’attacher à Raichu. Ce pouvoir ne peut pas être utilisé si Raichu est affecté par un État Spécial.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -56,22 +62,30 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
suffix: "Prime",
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user