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

83 lines
1.5 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: "Hideaki Hakozaki",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
230,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Seadra",
fr: "Hypocean",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Spray Splash",
fr: "Embruns",
},
effect: {
en: "Once during your turn (before your attack), you may put 1 damage counter on 1 of your opponents Pokémon. This power cant be used if Kingdra is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez placer un marqueur de dégât sur lun des Pokémon de votre adversaire. Ce pouvoir ne peut pas être utilisé si Hyporoi est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Dragon Steam",
fr: "Dragovapeur",
},
effect: {
en: "If your opponent has any Fire Pokémon in play, this attacks base damage is 20 instead of 60.",
fr: "Si votre adversaire dispose de nimporte quel Pokémon Fire en jeu, cette attaque inflige 20 dégâts de base au lieu de 60.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card