1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +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

88 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: "Kingdra",
fr: "Hyporoi",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
230,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Seadra",
fr: "Hypocean",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Water Arrow",
fr: "Flèche deau",
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 30 damage to that Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez lun des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Stream Pump",
fr: "Pompe à eau",
},
effect: {
en: "You may do 50 damage plus 30 more damage. If you do, return an Energy card attached to Kingdra to your hand.",
fr: "Vous pouvez infliger 50 dégâts plus 30 dégâts supplémentaires. Dans ce cas, récupérez dans votre main une carte Énergie attachée à Hyporoi.",
},
damage: "50+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
description: {
en: "It sleeps deep on the ocean floor to build its energy. It is said to cause tornadoes as it wakes."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card