1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

72 lines
1.6 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Lotad",
fr: "Nénupiot",
es: "Lotad",
it: "Lotad",
pt: "Lotad",
de: "Loturzel"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
illustrator: "Teeziro",
attacks: [{
name: {
en: "Call for Family",
fr: "Appel à la Famille",
es: "Llamar a la Familia",
it: "Cerca Famiglia",
pt: "Call for Family",
de: "Familienruf"
},
effect: {
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusquà 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck."
},
cost: ["Colorless"]
}, {
name: {
en: "Rain Splash",
fr: "Pluie Éclaboussante",
es: "Golpe de Lluvia",
it: "Spruzzapioggia",
pt: "Rain Splash",
de: "Regenplatscher"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1
}
export default card