1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

88 lines
2.0 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",
de: "Seedraking"
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare PRIME",
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",
de: "Fontänenspritzer"
},
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.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 Schadensmarke auf 1 Pokémon deines Gegners legen. Diese Poké-Power kann nicht benutzt werden, wenn Seedraking von einem Speziellen Zustand betroffen ist."
},
},
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Dragon Steam",
fr: "Dragovapeur",
de: "Drachendampf"
},
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.",
de: "Wenn dein Gegner mindestens 1 -Pokémon im Spiel hat, beträgt der Grundschaden dieses Angriffs 20 Schadenspunkte anstelle von 60 Schadenspunkten."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card