1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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.7 KiB
TypeScript
Raw Permalink 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 '../Team Up'
const card: Card = {
name: {
en: "Shaymin ◇",
fr: "Shaymin ◇",
es: "Shaymin ◇",
it: "Shaymin ◇",
pt: "Shaymin ◇",
de: "Shaymin ◇"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
492,
],
hp: 80,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Flower Storm",
fr: "Tempête de Fleurs",
es: "Tormenta de Flores",
it: "Tempesta Floreale",
pt: "Tempestade Floral",
de: "Blütensturm"
},
effect: {
en: "This attack does 30 damage times the amount of basic Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre dÉnergies de base attachées à tous vos Pokémon.",
es: "Este ataque hace 30 puntos de daño por cada Energía Básica unida a todos tus Pokémon.",
it: "Questo attacco infligge 30 danni per ogni Energia base assegnata ai tuoi Pokémon.",
pt: "Este ataque causa 30 pontos de dano vezes a quantidade de Energia básica ligada a todos os seus Pokémon.",
de: "Diese Attacke fügt 30 Schadenspunkte mal der Anzahl der an alle deine Pokémon angelegten Basis-Energien zu."
},
damage: "30×",
},
{
cost: [
"Grass",
"Grass",
],
name: {
fr: "Tempête de Fleurs",
},
effect: {
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre dÉnergies de base attachées à tous vos Pokémon.",
},
damage: "30×",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 0
}
export default card