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

83 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Mareanie",
fr: "Vorastérie",
es: "Mareanie",
it: "Mareanie",
pt: "Mareanie",
de: "Garstella"
},
illustrator: "Shin Nagasawa",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
747,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bail Out",
fr: "Renflouage",
es: "Sacar de Apuros",
it: "Soccorso",
pt: "Salvamento",
de: "Freilassen"
},
effect: {
en: "Put a Pokémon from your discard pile into your hand.",
fr: "Ajoutez un Pokémon de votre pile de défausse à votre main.",
es: "Pon 1 Pokémon de tu pila de descartes en tu mano.",
it: "Prendi un Pokémon dalla tua pila degli scarti e aggiungilo alle carte che hai in mano.",
pt: "Coloque 1 Pokémon da sua pilha de descarte na sua mão.",
de: "Nimm 1 Pokémon aus deinem Ablagestapel auf deine Hand."
},
},
{
cost: [
"Water",
],
name: {
en: "Rain Splash",
fr: "Pluie éclaboussante",
es: "Golpe de Lluvia",
it: "Spruzzapioggia",
pt: "Chuva Borrifante",
de: "Regenplatscher"
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card