mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
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,
|
||
|
||
description: {
|
||
en: "Its leaf grew too large for it to live on land. That is how it began to live floating in the water."
|
||
},
|
||
|
||
dexId: [270],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|