1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

99 lines
1.6 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 '../Undaunted'
const card: Card = {
name: {
en: "Leafeon",
fr: "Phyllali",
de: "Folipurba"
},
illustrator: "Noriko Hotta",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
470,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Eevee",
fr: "Evoli",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Miasma Wind",
fr: "Vent miasme",
de: "Miasma"
},
effect: {
en: "Does 50 damage times the number of Special Conditions affecting the Defending Pokémon.",
fr: "Inflige 50 dégâts multipliés par le nombre dÉtats Spéciaux affectant le Pokémon Défenseur.",
de: "Dieser Angriff fügt 50 Schadenspunkte mal der Anzahl der Speziellen Zustände, von dem das Verteidigende Pokémon betroffen ist, zu."
},
damage: "50x",
},
{
cost: [
"Grass",
],
name: {
en: "Soothing Scent",
fr: "Senteur apaisante",
de: "Beruhigender Duft"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
de: "Das Verteidigende Pokémon schläft jetzt."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
description: {
en: "When you see Leafeon asleep in a patch of sunshine, youll know it is using photosynthesis to produce clean air."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card