1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +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

96 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Gyarados",
fr: "Léviator",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
130,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Splash",
fr: "Hydro-éclaboussure",
},
damage: 50,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
},
effect: {
en: "Discard an Energy card attached to the Defending Pokémon.",
fr: "Défaussez-vous dune carte Énergie attachée au Pokémon Défenseur.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
description: {
en: "Once it appears, it goes on a rampage. It remains enraged until it demolishes everything around it."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card