1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

91 lines
1.7 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 '../Shining Legends'
const card: Card = {
name: {
en: "Raikou",
fr: "Raikou",
es: "Raikou",
it: "Raikou",
pt: "Raikou",
de: "Raikou"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
243,
],
hp: 120,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Booming Thunder",
fr: "Tonnerre Grondant",
es: "Trueno Estridente",
it: "Tuono Tonante",
pt: "Trovão Estrepitoso",
de: "Donnerbrüllen"
},
effect: {
en: "Attach a Lightning Energy card from your discard pile to 1 of your Benched Pokémon.",
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à lun de vos Pokémon de Banc.",
es: "Une 1 carta de Energía Lightning de tu pila de descartes a 1 de tus Pokémon en Banca.",
it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia Lightning dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia Lightning da sua pilha de descarte a 1 dos seus Pokémon no Banco.",
de: "Lege 1 Lightning-Energiekarte aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an."
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Electric Ball",
fr: "Boule de Foudre",
es: "Bola Eléctrica",
it: "Lamposfera",
pt: "Bola de Eletricidade",
de: "Stromball"
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card