1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

84 lines
1.4 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Ampharos",
fr: "Pharamp",
es: "Ampharos",
it: "Ampharos",
pt: "Ampharos",
de: "Ampharos"
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Lightning",
],
evolveFrom: {
en: "Flaaffy",
fr: "Lainergie"
},
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Dazzle Blast",
fr: "Explosion de Lumière",
es: "Destello Deslumbrante",
it: "Accecobomba",
pt: "Explosão Fascinante",
de: "Blendende Explosion"
},
effect: {
en: "Your opponents Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Il Pokémon attivo del tuo avversario viene confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
},
damage: 50,
},
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Electric Ball",
fr: "Boule de Foudre",
es: "Bola Eléctrica",
it: "Lamposfera",
pt: "Bola de Eletricidade",
de: "Stromball"
},
damage: 130,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
regulationMark: "D"
}
export default card