mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
102 lines
2.0 KiB
TypeScript
102 lines
2.0 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "hgss2-85",
|
||
localId: 85,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Kingdra",
|
||
fr: "Hyporoi",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 230,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss2/85/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/85/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss2/85/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss2/85/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Seadra",
|
||
fr: "Hypocean",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 54,
|
||
name: "Hideaki Hakozaki"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 644,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Spray Splash",
|
||
fr: "Embruns",
|
||
},
|
||
text: {
|
||
en: "Once during your turn (before your attack), you may put 1 damage counter on 1 of your opponent's Pokémon. This power can't 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 l'un des Pokémon de votre adversaire. Ce pouvoir ne peut pas être utilisé si Hyporoi est affecté par un État Spécial.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Dragon Steam",
|
||
fr: "Dragovapeur",
|
||
},
|
||
text: {
|
||
en: "If your opponent has any Fire Pokémon in play, this attack's base damage is 20 instead of 60.",
|
||
fr: "Si votre adversaire dispose de n'importe quel Pokémon Fire en jeu, cette attaque inflige 20 dégâts de base au lieu de 60.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RarePrime,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HS—Unleashed",
|
||
code: "hgss2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|