1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +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

86 lines
2.0 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Lurantis",
fr: "Floramantis",
es: "Lurantis",
it: "Lurantis",
pt: "Lurantis",
de: "Mantidea"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
754,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Fomantis",
fr: "Mimantis",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Sunny Day",
fr: "Zénith",
es: "Día soleado",
it: "Giornodisole",
pt: "Sunny Day",
de: "Sonnentag"
},
effect: {
en: "The attacks of your Grass Pokémon and Fire Pokémon do 20 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
fr: "Les attaques de vos Pokémon Grass et de vos Pokémon Fire infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
es: "Los ataques de tus Pokémon Grass y Pokémon Fire hacen 20 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Gli attacchi dei tuoi Pokémon Grass e dei tuoi Pokémon Fire infliggono 20 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Os ataques dos seus Pokémon Grass e Pokémon Fire causam 20 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Die Attacken deiner Grass-Pokémon und Fire-Pokémon fügen dem Aktiven Pokémon deines Gegners 20 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Solar Beam",
fr: "Lance-Soleil",
es: "Rayo Solar",
it: "Solarraggio",
pt: "Raio Solar",
de: "Solarstrahl"
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card