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

97 lines
1.7 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Primarina",
fr: "Oratoria",
es: "Primarina",
it: "Primarina",
pt: "Primarina",
de: "Primarene"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
730,
],
hp: 150,
types: [
"Water",
],
evolveFrom: {
en: "Brionne",
fr: "Otarlette",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Disarming Voice",
fr: "Voix Enjôleuse",
es: "Voz Cautivadora",
it: "Incantavoce",
pt: "Voz Desarmante",
de: "Säuselstimme"
},
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: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Sparkling Aria",
fr: "Aria de lÉcume",
es: "Aria Burbuja",
it: "Canto Effimero",
pt: "Aria Cintilante",
de: "Schaumserenade"
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
es: "Cura 30 puntos de daño a este Pokémon.",
it: "Cura questo Pokémon da 30 danni.",
pt: "Cure 30 pontos de dano deste Pokémon.",
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card