1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc4d1bd6cb
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>
2021-09-29 21:43:33 +00:00

85 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unleashed'
const card: Card = {
name: {
en: "Entei & Raikou LEGEND",
fr: "Entei & Raikou LÉGENDE (bas)",
},
illustrator: "Shinji Higuchi + Sachiko Eba",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
243,
],
hp: 140,
types: [
"Fire",
"Lightning",
],
suffix: "Legend",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Detonation Spin",
fr: "Détonations en pagaille",
},
effect: {
en: "Discard a Fire Energy attached to Entei & Raikou LEGEND.",
fr: "Défaussez une carte Énergie Fire attachée à Entei & Raikou LÉGENDE.",
},
damage: 90,
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thunder Fall",
fr: "Cascatonnerre",
},
effect: {
en: "Discard all Energy attached to Entei & Raikou LEGEND. This attack does 80 damage to each Pokémon that has any Poké-Powers (both yours and your opponents). This attacks damage isnt affected by Weakness or Resistance.",
fr: "Défaussez toutes les cartes Énergie attachées à Entei & Raikou LÉGENDE. Cette attaque inflige 80 dégâts à chaque Pokémon ayant des Poké-Powers (les vôtres et ceux de votre adversaire). Les dégâts infligés par cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
{
type: "Fighting",
value: "×2"
},
],
stage: "Basic",
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card