1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

74 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Raikou",
fr: "Raikou",
es: "Raikou",
it: "Raikou",
pt: "Raikou",
de: "Raikou"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
243,
],
hp: 120,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Lost Voltage",
fr: "Tension Perdue",
es: "Voltaje Perdido",
it: "Voltaggio Perduto",
pt: "Voltagem Perdida",
de: "Nirgendwo-Funke"
},
effect: {
en: "If you have any Lightning Energy cards in the Lost Zone, this attack does 90 more damage.",
fr: "Si vous avez au moins une carte Énergie Lightning dans la Zone Perdue, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si tienes alguna carta de Energía Lightning en la Zona Perdida, este ataque hace 90 puntos de daño más.",
it: "Se hai delle carte Energia Lightning nellarea perduta, questo attacco infligge 90 danni in più.",
pt: "Se você tiver alguma carta de Energia Lightning na Zona Perdida, este ataque causará 90 pontos de dano a mais.",
de: "Wenn du mindestens 1 Lightning-Energiekarte im Nirgendwo hast, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card