1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

Signed-off-by: Avior <github@avior.me>

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

90 lines
1.8 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 '../Aquapolis'
const card: Card = {
name: {
en: "Kingdra",
fr: "Hyporoi"
},
illustrator: "Mikio Menjo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
230,
],
hp: 110,
types: [
"Colorless",
],
evolveFrom: {
en: "Seadra",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Crystal Type",
fr: "Type de cristal"
},
effect: {
en: "Whenever you attach a Water, Lightning, or Psychic basic Energy card from your hand to Kingdra, Kingdra's type (color) becomes the same as that Energy card type until the end of the turn.",
fr: "À chaque fois que vous attachez une carte Énergie de base , ou de votre main à Hyporoi, le type de Hyporoi (sa couleur) devient identique au type de carte Énergie jusqu'à la fin du tour."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Lightning",
],
name: {
en: "Aquabomb",
fr: "Aquabombe"
},
effect: {
en: "Kingdra does 10 damage to itself. (Don't apply Weakness or Resistance when Kingdra damages itself with this attack.)",
fr: "Hyporoi s'inflige 10 dégâts. (N'appliquez ni la Faiblesse, ni la Résistance quand Hyporoi s'inflige des dégâts avec cette attaque.)"
},
damage: 40,
},
{
cost: [
"Psychic",
"Psychic",
"Lightning",
"Colorless",
],
name: {
en: "Dual Burn",
fr: "Double brûlure"
},
effect: {
en: "Flip 2 coins. For each tails, discard 1 Energy card attached to Kingdra.",
fr: "Lancez 2 pièces. Si c'est pile, défaussez-vous d'une carte Énergie attachée à Hyporoi."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card